fix the admin verbs trying to kill players by filling their lungs with plasma (#30991)

fix the admin tools trying to kill players by filling their lungs with plasma
This commit is contained in:
slarticodefast
2024-08-14 11:56:38 +02:00
committed by GitHub
parent 600d5bfae0
commit 8cb2cfc0af

View File

@@ -736,11 +736,11 @@ public sealed partial class AdminVerbSystem
} }
} }
private void RefillEquippedTanks(EntityUid target, Gas plasma) private void RefillEquippedTanks(EntityUid target, Gas gasType)
{ {
foreach (var held in _inventorySystem.GetHandOrInventoryEntities(target)) foreach (var held in _inventorySystem.GetHandOrInventoryEntities(target))
{ {
RefillGasTank(held, Gas.Plasma); RefillGasTank(held, gasType);
} }
} }