From 67665d76cf475c4a3eca4385e39612e65a788bb3 Mon Sep 17 00:00:00 2001 From: fludd12 Date: Tue, 28 Mar 2017 23:48:07 -0400 Subject: [PATCH] Fixes two things Hopefully last fix Revert "Hopefully last fix" This reverts commit 91550ad5abb256d3d868459393073a4bd74b7241. Fixes two things --- code/game/dna/genes/vg_powers.dm | 2 +- code/modules/mob/language.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/dna/genes/vg_powers.dm b/code/game/dna/genes/vg_powers.dm index 3a05ae02e38..32a6a58cbb3 100644 --- a/code/game/dna/genes/vg_powers.dm +++ b/code/game/dna/genes/vg_powers.dm @@ -245,7 +245,7 @@ target.show_message("You hear [user.real_name]'s voice: [say]") else target.show_message("You hear a voice that seems to echo around the room: [say]") - user.show_message("You project your mind into [target.real_name]: [say]") + user.show_message("You project your mind into [target.name]: [say]") for(var/mob/dead/observer/G in player_list) G.show_message("Telepathic message from [user] ([ghost_follow_link(user, ghost=G)]) to [target] ([ghost_follow_link(target, ghost=G)]): [say]") diff --git a/code/modules/mob/language.dm b/code/modules/mob/language.dm index 8a278a026e9..bbf840f7b3f 100644 --- a/code/modules/mob/language.dm +++ b/code/modules/mob/language.dm @@ -301,8 +301,8 @@ their = "her" if(speaker.gender == "male") their = "his" - for(var/mob/living/player in view(4, speaker)) - to_chat(player,"[speaker] touches [their] fingers to [their] temple.") + + speaker.visible_message("[speaker] touches [their] fingers to [their] temple.") ..(speaker,message,speaker.real_name) /datum/language/grey/check_can_speak(mob/living/speaker)