From 75e469738c222ebc4fc1c42507205fbde42f7dba Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sun, 2 Feb 2025 11:39:23 -0800 Subject: [PATCH] Fixes debug assertion crash when inserting cash (#34812) --- Content.Server/Cargo/Systems/CargoSystem.Orders.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index 9dbd2b88dc..2c86a5590a 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -64,6 +64,7 @@ namespace Content.Server.Cargo.Systems _audio.PlayPvs(component.ConfirmSound, uid); UpdateBankAccount(stationUid.Value, bank, (int) price); QueueDel(args.Used); + args.Handled = true; } private void OnInit(EntityUid uid, CargoOrderConsoleComponent orderConsole, ComponentInit args)