diff --git a/Content.Shared/Execution/ExecutionComponent.cs b/Content.Shared/Execution/ExecutionComponent.cs index f9c5111d63a..113b10f71e2 100644 --- a/Content.Shared/Execution/ExecutionComponent.cs +++ b/Content.Shared/Execution/ExecutionComponent.cs @@ -22,5 +22,5 @@ public sealed partial class ExecutionComponent : Component /// True if it is currently executing for handlers. /// [DataField] - public bool Executing = true; + public bool Executing; } diff --git a/Content.Shared/Execution/ExecutionSystem.cs b/Content.Shared/Execution/ExecutionSystem.cs index df6f38e2a90..bdd3d81f034 100644 --- a/Content.Shared/Execution/ExecutionSystem.cs +++ b/Content.Shared/Execution/ExecutionSystem.cs @@ -47,7 +47,7 @@ public override void Initialize() SubscribeLocalEvent>(OnGetInteractionsVerbs); SubscribeLocalEvent(OnExecutionDoAfter); - SubscribeLocalEvent(OnGetMeleeDamage); + //SubscribeLocalEvent(OnGetMeleeDamage); SubscribeLocalEvent(OnProjectileHit); }