From b51482f51a67bb90f6ccc7fb355c316e200bb36d Mon Sep 17 00:00:00 2001 From: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Date: Sat, 13 Apr 2024 08:25:53 -0700 Subject: [PATCH] Fix incorrect "Cycled" and "Bolted" popups when (un)wielding a gun (#26924) --- Content.Shared/Wieldable/WieldableSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs index b752932879..9fe76c625b 100644 --- a/Content.Shared/Wieldable/WieldableSystem.cs +++ b/Content.Shared/Wieldable/WieldableSystem.cs @@ -34,7 +34,7 @@ public sealed class WieldableSystem : EntitySystem { base.Initialize(); - SubscribeLocalEvent(OnUseInHand); + SubscribeLocalEvent(OnUseInHand, before: [typeof(SharedGunSystem)]); SubscribeLocalEvent(OnItemUnwielded); SubscribeLocalEvent(OnItemLeaveHand); SubscribeLocalEvent(OnVirtualItemDeleted);