Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Fixing this mess (new-frontiers-14#1310)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvir001 authored and FireNameFN committed May 4, 2024
1 parent 6c110ca commit bfbb1e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Content.Shared/Execution/ExecutionComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ public sealed partial class ExecutionComponent : Component
/// True if it is currently executing for handlers.
/// </summary>
[DataField]
public bool Executing = true;
public bool Executing;
}
2 changes: 1 addition & 1 deletion Content.Shared/Execution/ExecutionSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public override void Initialize()

SubscribeLocalEvent<ExecutionComponent, GetVerbsEvent<UtilityVerb>>(OnGetInteractionsVerbs);
SubscribeLocalEvent<ExecutionComponent, ExecutionDoAfterEvent>(OnExecutionDoAfter);
SubscribeLocalEvent<ExecutionComponent, GetMeleeDamageEvent>(OnGetMeleeDamage);
//SubscribeLocalEvent<ExecutionComponent, GetMeleeDamageEvent>(OnGetMeleeDamage);
SubscribeLocalEvent<ProjectileComponent, ProjectileHitEvent>(OnProjectileHit);
}

Expand Down

0 comments on commit bfbb1e0

Please sign in to comment.