Skip to content

Commit

Permalink
squash! Merge tool integrating 7381df4
Browse files Browse the repository at this point in the history
  • Loading branch information
LankLTE committed Jul 23, 2024
2 parents bfaab5e + 7381df4 commit 8d9da04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Ghost/Roles/ToggleableGhostRoleSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ private void UpdateAppearance(EntityUid uid, ToggleableGhostRoleStatus status)

private void AddWipeVerb(EntityUid uid, ToggleableGhostRoleComponent component, GetVerbsEvent<ActivationVerb> args)
{
if (!args.CanAccess || !args.CanInteract)
if (args.Hands == null || !args.CanAccess || !args.CanInteract)
return;

if (TryComp<MindContainerComponent>(uid, out var mind) && mind.HasMind)
Expand Down

0 comments on commit 8d9da04

Please sign in to comment.