Globing the player list for cluwnes

This commit is contained in:
Aurorablade
2018-10-23 18:18:17 -04:00
parent 8412befde2
commit 958c72171b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
if(confirm == "Yes")
var/turf/T = get_turf(usr)
target = input("Any specific target in mind? Please note only live, non cluwned, human targets are valid.", "Target", target) as null|anything in player_list
target = input("Any specific target in mind? Please note only live, non cluwned, human targets are valid.", "Target", target) as null|anything in GLOB.player_list
if(isnull(target))
return
if(target && ishuman(target))
@@ -137,7 +137,7 @@
/mob/living/simple_animal/hostile/floor_cluwne/proc/Acquire_Victim(specific)
var/list/players_copy = player_list.Copy()
var/list/players_copy = GLOB.player_list.Copy()
while(players_copy.len)
var/mob/living/carbon/human/H = pick_n_take(players_copy)