Fixes more input sort runtimes (#47957)

* Fixes another sorting runtiming.

* sortNames copy list, another wrong sort.
This commit is contained in:
skoglol
2019-11-28 19:38:57 +01:00
committed by AnturK
parent befd10cf12
commit 4f24cfaa7d
4 changed files with 9 additions and 9 deletions
@@ -1036,7 +1036,7 @@
var/mob/living/L = I
da_list[L.real_name] = L
var/choice = input(user,"Who do you want dead?","Choose Your Victim") as null|anything in sortNames(da_list)
var/choice = input(user,"Who do you want dead?","Choose Your Victim") as null|anything in sortList(da_list)
choice = da_list[choice]