Skip to content

Commit

Permalink
Update AnomalyPowerSystem.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
VMSolidus committed Sep 30, 2024
1 parent 967e77f commit 4687e62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Abilities/Psionics/AnomalyPowerSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ private void OnPowerUsed(EntityUid uid, PsionicComponent component, AnomalyPower
|| HasComp<MindbrokenComponent>(uid))
return;

var overcharged = _glimmerSystem.Glimmer > args.SupercriticalThreshold / component.CurrentAmplification * component.CurrentDampening;
var overcharged = _glimmerSystem.Glimmer > args.SupercriticalThreshold * component.CurrentAmplification / component.CurrentDampening;

// I already hate this, so much.
//DoBluespaceAnomalyEffects(uid, component, args, overcharged);
Expand Down

0 comments on commit 4687e62

Please sign in to comment.