Skip to content

Commit

Permalink
correct another == null
Browse files Browse the repository at this point in the history
  • Loading branch information
Spookerton committed Jan 15, 2024
1 parent ea70644 commit b7123f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maps/bluespace_interlude/bluespace_interlude.dm
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
/turf/simulated/floor/bluespace/interlude/Process()
for(var/weakref/W in victims)
var/atom/movable/AM = W.resolve()
if (AM == null || get_turf(AM) != src)
if (isnull(AM) || get_turf(AM) != src)
victims -= W
continue
if (istype(AM, /mob/living/carbon/human))
Expand Down

0 comments on commit b7123f5

Please sign in to comment.