Skip to content

Commit

Permalink
fix the admin verbs trying to kill players by filling their lungs wit…
Browse files Browse the repository at this point in the history
…h plasma (#30991)

fix the admin tools trying to kill players by filling their lungs with plasma
  • Loading branch information
slarticodefast authored Aug 14, 2024
1 parent 600d5bf commit 8cb2cfc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -736,11 +736,11 @@ private void AddTricksVerbs(GetVerbsEvent<Verb> args)
}
}

private void RefillEquippedTanks(EntityUid target, Gas plasma)
private void RefillEquippedTanks(EntityUid target, Gas gasType)
{
foreach (var held in _inventorySystem.GetHandOrInventoryEntities(target))
{
RefillGasTank(held, Gas.Plasma);
RefillGasTank(held, gasType);
}
}

Expand Down

0 comments on commit 8cb2cfc

Please sign in to comment.