From 444ba0ed0d56d03d60914af6d536f4ab7b6e1c97 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 17 Jan 2021 20:01:07 -0700 Subject: [PATCH] Update pool_main.dm --- code/modules/pool/pool_main.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/pool/pool_main.dm b/code/modules/pool/pool_main.dm index 98189cc8a4..088c991ca0 100644 --- a/code/modules/pool/pool_main.dm +++ b/code/modules/pool/pool_main.dm @@ -150,7 +150,8 @@ H.DefaultCombatKnockdown(40) playsound(src, 'sound/effects/woodhit.ogg', 60, TRUE, 1) else if(filled) - victim.adjustStaminaLoss(1) + if(iscarbon(victim)) + victim.adjustStaminaLoss(1) playsound(src, "water_wade", 20, TRUE) return ..()