From 2874f018e83251b4b37193cc5bb6de0f2a3e3cc8 Mon Sep 17 00:00:00 2001 From: Verkister Date: Fri, 29 Dec 2017 15:39:42 +0200 Subject: [PATCH] Bodysnatcher message tweak. -Assume this. (tweaks out a hardcoded "his") --- code/game/objects/items/devices/body_snatcher_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/body_snatcher_vr.dm b/code/game/objects/items/devices/body_snatcher_vr.dm index 053d5dbff3f..9e673dfe9cc 100644 --- a/code/game/objects/items/devices/body_snatcher_vr.dm +++ b/code/game/objects/items/devices/body_snatcher_vr.dm @@ -33,7 +33,7 @@ var/choice = alert(usr,"This will swap your mind with the target's mind. This will result in them controlling your body, and you controlling their body. Continue?","Confirmation","Continue","Cancel") if(choice == "Continue" && usr.get_active_hand() == src && usr.Adjacent(M)) - usr.visible_message("[usr] pushes the device up his forehead and [M]'s head, the device beginning to let out a series of light beeps!","You begin swap minds with [M]!") + usr.visible_message("[usr] pushes the device up their forehead and [M]'s head, the device beginning to let out a series of light beeps!","You begin swap minds with [M]!") if(do_after(usr,35 SECONDS,M)) if(usr.mind && M.mind && M.stat != DEAD && usr.stat != DEAD) log_and_message_admins("[usr.ckey] used a Bodysnatcher to swap bodies with [M.ckey]")