Should be the rest for this lot.

This commit is contained in:
SkyMarshal
2011-12-27 14:13:11 -07:00
parent e32813060f
commit 25400f7af4
4 changed files with 12 additions and 4 deletions
@@ -1,5 +1,5 @@
//Lallander was here
/mob/living/carbon/human/whisper(message as text)
//Figured it out. If you use say :w (message) it HTML encodes it, THEN passes it to the whisper code, which does so again. Jeez. --SkyMarshal
message = trim(copytext(sanitize(message), 1, MAX_MESSAGE_LEN))
if (!message)
+2 -1
View File
@@ -26,6 +26,7 @@
if(dongle.translate_hive) return 1
/mob/living/say(var/message)
var/message_old = message
message = trim(copytext(sanitize(message), 1, MAX_MESSAGE_LEN))
if (!message)
@@ -220,7 +221,7 @@
//I see no reason to restrict such way of whispering
if ("whisper")
whisper(message)
whisper(message_old)
return
if ("binary")