mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-21 03:56:47 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user