Normalize alert() calls

This commit is contained in:
Aronai Sieyes
2021-06-25 14:27:14 -04:00
parent 8a3971a37e
commit 70bff20384
102 changed files with 1424 additions and 1427 deletions
@@ -69,13 +69,13 @@
var/mob/living/L = user
//They're in it, and want to get out.
if(L.loc == src)
var/choice = alert("Do you want to exit \the [src]?","Un-Hide?","Exit","Stay")
var/choice = alert(usr, "Do you want to exit \the [src]?","Un-Hide?","Exit","Stay")
if(choice == "Exit")
if(L == hider)
hider = null
L.forceMove(get_turf(src))
else if(!hider)
var/choice = alert("Do you want to hide in \the [src]?","Un-Hide?","Hide","Stay")
var/choice = alert(usr, "Do you want to hide in \the [src]?","Un-Hide?","Hide","Stay")
if(choice == "Hide" && !hider) //Check again because PROMPT
L.forceMove(src)
hider = L