mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 13:05:44 +01:00
Funky Verb Fix (#10549)
This commit is contained in:
@@ -270,20 +270,16 @@
|
||||
|
||||
var/list/chosen_observers = list()
|
||||
var/next_observer = "NotGeeves"
|
||||
while(next_observer != "== Finished ==")
|
||||
var/list/valid_choices = player_list
|
||||
while(next_observer)
|
||||
var/list/valid_choices = player_list.Copy()
|
||||
for(var/choice in valid_choices)
|
||||
if(choice in chosen_observers)
|
||||
valid_choices -= choice
|
||||
if(!isobserver(choice))
|
||||
valid_choices -= choice
|
||||
valid_choices += "== Finished =="
|
||||
next_observer = input("Choose an observer you want to add to the list.", "Choose Observer") as null|anything in valid_choices
|
||||
if(!next_observer || isnull(next_observer))
|
||||
next_observer = "== Finished =="
|
||||
else
|
||||
if(next_observer)
|
||||
chosen_observers += next_observer
|
||||
chosen_observers -= "== Finished =="
|
||||
|
||||
for(var/spawn_observer in chosen_observers)
|
||||
var/mob/living/carbon/human/H = new /mob/living/carbon/human(get_turf(usr))
|
||||
|
||||
Reference in New Issue
Block a user