From 319c0cdbe50ef238e8323686ab5b9e3f9655eaa8 Mon Sep 17 00:00:00 2001 From: fira Date: Mon, 30 Oct 2023 09:13:04 +0100 Subject: [PATCH] Fix runtimes in toxic water targeting unliving (#4804) # About the pull request You've heard this story before. This causes runtimes with Queen Eye and probably other camera mobs. Observers exempt due to a dead check later down. No player facing changes. --- code/modules/desert_dam/filtration/filtration.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/desert_dam/filtration/filtration.dm b/code/modules/desert_dam/filtration/filtration.dm index d35ee7c3eaef..6c079f3dcd60 100644 --- a/code/modules/desert_dam/filtration/filtration.dm +++ b/code/modules/desert_dam/filtration/filtration.dm @@ -136,7 +136,7 @@ var/global/east_riverstart = 0 else return - if(ismob(A)) + if(isliving(A)) var/mob/living/M = A // Inside a xeno for example