From 8cb2cfc0afdbee6b3745c3c37c292bcef8da28bd Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Wed, 14 Aug 2024 11:56:38 +0200 Subject: [PATCH] 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 --- .../Administration/Systems/AdminVerbSystem.Tools.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } } -- 2.52.0