Skip to content

Commit

Permalink
Fix runtimes in toxic water targeting unliving (#4804)
Browse files Browse the repository at this point in the history
# 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.
  • Loading branch information
fira committed Oct 30, 2023
1 parent 1cba013 commit 319c0cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/desert_dam/filtration/filtration.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 319c0cd

Please sign in to comment.