Skip to content

Commit 77ea447

Browse files
committed
Update NoosphericZapPowerSystem.cs
1 parent 863bef7 commit 77ea447

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Content.Server/Backmen/Abilities/Psionics/Abilities/NoosphericZapPowerSystem.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ private void OnPowerUsed(NoosphericZapPowerActionEvent args)
5757
_psionics.LogPowerUsed(args.Performer, "noospheric zap");
5858
args.Handled = true;
5959

60-
if (TryComp<PyrokinesisPowerComponent>(args.Performer, out var powerComponent)
61-
&& _actions.GetAction(powerComponent.PyrokinesisPowerAction) is {} action)
60+
if (TryComp<NoosphericZapPowerComponent>(args.Performer, out var powerComponent)
61+
&& _actions.GetAction(powerComponent.NoosphericZapPowerAction) is {} action)
6262
{
63-
_actions.SetCooldown(powerComponent.PyrokinesisPowerAction, action.Comp.UseDelay ?? TimeSpan.FromMinutes(1));
63+
_actions.SetCooldown(powerComponent.NoosphericZapPowerAction, action.Comp.UseDelay ?? TimeSpan.FromMinutes(1));
6464
}
6565
}
6666
}

0 commit comments

Comments
 (0)