Adds cells to stunbatons (#972)

This commit is contained in:
Daniel Thompson
2020-05-25 14:02:59 +01:00
committed by GitHub
parent 132fd57414
commit b53446bed1
2 changed files with 197 additions and 20 deletions

View File

@@ -84,7 +84,7 @@ namespace Content.Server.GameObjects.Components.Power
/// </summary>
public bool CanDeductCharge(float toDeduct)
{
if (Charge > toDeduct)
if (Charge >= toDeduct)
return true;
return false;
}