From ed12c1d3f5607db906712e3a5d13d7342dec7fc0 Mon Sep 17 00:00:00 2001 From: DDDragoni <38265528+DDeegan@users.noreply.github.com> Date: Thu, 4 Sep 2025 04:17:52 -0700 Subject: [PATCH] Telepad Label Fix (#39975) Fixed telapad order labels showing wrong account --- Content.Server/Cargo/Systems/CargoSystem.Telepad.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs b/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs index 9e5c20e8c9..d8ee9c25d0 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs @@ -105,7 +105,7 @@ public sealed partial class CargoSystem } var currentOrder = comp.CurrentOrders.First(); - if (FulfillOrder(currentOrder, console.Value.Comp.Account, xform.Coordinates, comp.PrinterOutput)) + if (FulfillOrder(currentOrder, currentOrder.Account, xform.Coordinates, comp.PrinterOutput)) { _audio.PlayPvs(_audio.ResolveSound(comp.TeleportSound), uid, AudioParams.Default.WithVolume(-8f));