* "Is already...", "Can not...", "Not when..." etc.

This commit is contained in:
kingofkosmos
2019-06-27 06:15:43 +03:00
parent ebf787a97a
commit ec5c82029a
43 changed files with 134 additions and 136 deletions
+3 -3
View File
@@ -388,7 +388,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
set name = "Teleport"
set desc= "Teleport to a location"
if(!isobserver(usr))
to_chat(usr, "Not when you're not dead!")
to_chat(usr, "<span class='warning'>Not when you're not dead!</span>")
return
var/list/filtered = list()
for(var/V in GLOB.sortedAreas)
@@ -405,7 +405,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
L+=T
if(!L || !L.len)
to_chat(usr, "No area available.")
to_chat(usr, "<span class='warning'>No area available.</span>")
return
usr.forceMove(pick(L))
@@ -829,7 +829,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
if(isobserver(src))
SSpai.recruitWindow(src)
else
to_chat(usr, "Can't become a pAI candidate while not dead!")
to_chat(usr, "<span class='warning'>Can't become a pAI candidate while not dead!</span>")
/mob/dead/observer/CtrlShiftClick(mob/user)
if(isobserver(user) && check_rights(R_SPAWN))