Revert "TGUI alerts, lists, inputs"
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
*/
|
||||
/obj/item/clothing/suit/space/space_ninja/proc/ninjanet()
|
||||
var/mob/living/carbon/human/ninja = affecting
|
||||
var/mob/living/net_target = tgui_input_list(ninja, "Select who to capture:","Capture who?",sortNames(oview(ninja)))
|
||||
var/mob/living/net_target = input("Select who to capture:","Capture who?",null) as null|mob in sortNames(oview(ninja))
|
||||
|
||||
if(QDELETED(net_target)||!(net_target in oview(ninja)))
|
||||
return
|
||||
|
||||
@@ -95,7 +95,7 @@ GLOBAL_LIST_INIT(ninja_deinitialize_messages, list(
|
||||
if (!ninja || !ninja.mind)
|
||||
s_busy = FALSE
|
||||
return
|
||||
if (phase == 0 && tgui_alert(ninja, "Are you certain you wish to remove the suit? This will take time and remove all abilities.",,list("Yes","No")) == "No")
|
||||
if (phase == 0 && alert("Are you certain you wish to remove the suit? This will take time and remove all abilities.",,"Yes","No") == "No")
|
||||
s_busy = FALSE
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user