From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Wed, 14 Aug 2024 09:56:38 +0000 (+0200) Subject: fix the admin verbs trying to kill players by filling their lungs with plasma (#30991) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=8cb2cfc0afdbee6b3745c3c37c292bcef8da28bd;p=space-station-14.git 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 --- diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs index a00424a741..fef8a031d9 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs @@ -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)) { - RefillGasTank(held, Gas.Plasma); + RefillGasTank(held, gasType); } }