Skip to content

Commit

Permalink
Update PotentiaModifierSystem.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
VMSolidus committed Sep 29, 2024
1 parent 7f5455a commit 915fc95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Traits/Assorted/PotentiaModifierSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ private void OnRollPsionics(EntityUid uid, PotentiaModifierComponent component,
if (uid != args.Roller)
return;

args.BaselineChance += component.PotentiaMultiplier + component.PotentiaFlatModifier;
args.BaselineChance = args.BaselineChance * component.PotentiaMultiplier + component.PotentiaFlatModifier;
}
}

0 comments on commit 915fc95

Please sign in to comment.