Merge pull request #1673 from VOREStation/aro-talkfix

Cheap hack fix for get_blahblah_fast breaking due to null in list
This commit is contained in:
Arokha Sieyes
2017-06-10 15:28:52 -04:00
committed by GitHub
+3
View File
@@ -281,6 +281,9 @@
//A list of every mob with a client
for(var/mob in player_list)
if(isnull(mob)) //VOREStation Add - Fix for a weird bug with nulls in this list
player_list -= mob //VOREStation Add
continue //VOREStation Add
if(get_turf(mob) in hearturfs)
mobs |= mob
continue