Morph Greet Fix (#10074)

This commit is contained in:
Geeves
2020-09-25 07:44:48 +02:00
committed by GitHub
parent ea09c13483
commit 74e6f9ecec
2 changed files with 11 additions and 4 deletions

View File

@@ -56,10 +56,6 @@
return
/mob/abstract/hivemind/proc/release_as_morph()
to_chat(src, SPAN_DANGER(FONT_LARGE("You are a morph, released by [changeling_mob]!")))
to_chat(src, SPAN_DANGER("As a morph, you can disguise as objects by alt-clicking on them."))
to_chat(src, SPAN_DANGER("You can eat people and items by clicking on them, but only if they're dead."))
relay_hivemind("<font color=[COLOR_LING_HIVEMIND]>Hivemind member [src] has been released into the outside world as a morph!</font>", changeling_mob)
log_and_message_admins("has released [src] as a morph.", changeling_mob, get_turf(changeling_mob))
@@ -67,4 +63,9 @@
M.stop_thinking = TRUE // prevent the AI from taking over when the player ghosts
M.ckey = ckey
changeling_mob.mind.changeling.hivemind_members -= src
to_chat(M, SPAN_DANGER(FONT_LARGE("You are a morph, released by [changeling_mob]!")))
to_chat(M, SPAN_DANGER("As a morph, you can disguise as objects by alt-clicking on them."))
to_chat(M, SPAN_DANGER("You can eat people and items by clicking on them, but only if they're dead."))
qdel(src)