Changed default message to more useful

This commit is contained in:
c0
2015-07-31 18:56:16 +03:00
parent 95285e7946
commit 7495bf3569
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -433,7 +433,7 @@
|| locate(/obj/machinery/computer/cloning, get_step(src, EAST)) \
|| locate(/obj/machinery/computer/cloning, get_step(src, WEST)))
occupant.notify_ghost_cloning()
occupant.notify_ghost_cloning("Your corpse has been placed into a cloning scanner. Re-enter your corpse if you want to be cloned!")
return 1
/obj/machinery/dna_scannernew/open_machine()
+1 -1
View File
@@ -946,7 +946,7 @@ var/list/slot_equipment_priority = list( \
return G
break
/mob/proc/notify_ghost_cloning(var/message = "Your corpse has been placed into a cloning scanner. Re-enter your corpse if you want to be cloned!", var/sound = 'sound/effects/genetics.ogg')
/mob/proc/notify_ghost_cloning(var/message = "Someone is trying to revive you. Re-enter your corpse if you want to be revived!", var/sound = 'sound/effects/genetics.ogg')
var/mob/dead/observer/ghost = get_ghost()
if(ghost)
ghost.notify_cloning(message, sound)
@@ -668,7 +668,7 @@
if(!M.suiciding && !(NOCLONE in M.mutations))
if(!M)
return
if(M.notify_ghost_cloning("Someone is trying to revive you. Re-enter your corpse if you want to be revived!"))
if(M.notify_ghost_cloning())
spawn (100) //so the ghost has time to re-enter
return
else