From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Thu, 7 Dec 2023 18:51:45 +0000 (+0000) Subject: fix explosion resistance (#22224) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=50e8707477df94406eb1bace2cd781a7d58876ee;p=space-station-14.git fix explosion resistance (#22224) Co-authored-by: deltanedas <@deltanedas:kde.org> --- diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index f6863c74e0..773128a12b 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -49,7 +49,7 @@ public partial class InventorySystem protected void RefRelayInventoryEvent(EntityUid uid, InventoryComponent component, ref T args) where T : IInventoryRelayEvent { - RelayEvent((uid, component), args); + RelayEvent((uid, component), ref args); } protected void RelayInventoryEvent(EntityUid uid, InventoryComponent component, T args) where T : IInventoryRelayEvent