Added cancel button to teleport dialog, close button to PDA window and cancel button to telepathic mind projection

This commit is contained in:
Albert Iordache
2012-07-10 16:31:19 +03:00
parent 1e468ba4f6
commit d47b71b7c8
3 changed files with 16 additions and 8 deletions

View File

@@ -2787,7 +2787,9 @@ It can still be worn/put on as normal.
var/list/creatures = list()
for(var/mob/living/carbon/h in world)
creatures += h
var/mob/target = input ("Who do you want to project your mind to ?") as mob in creatures
var/mob/target = input ("Who do you want to project your mind to ?") as null|anything in creatures
if (isnull(target))
return
var/say = input ("What do you wish to say")
if(mRemotetalk in target.mutations)