Crusher will not stop and stare at effects anymore (#19724)

Crusher will not stop and stare at effects anymore

Fixes #19723
This commit is contained in:
Fluffy
2024-08-01 15:53:47 +00:00
committed by GitHub
parent ab27358e41
commit d4e2df4123
2 changed files with 59 additions and 1 deletions
@@ -81,7 +81,7 @@
var/turf/T = spook.loc
var/list/visible = list()
for(var/obj/O in T.contents)
if(!O.invisibility && O.name)
if(!O.invisibility && O.name && !istype(O, /obj/effect))
visible += O
if(visible.len)
var/atom/A = pick(visible)