Removes debugging broadcast from force-say.

This commit is contained in:
Tigercat2000
2014-11-26 13:27:50 -08:00
parent fb4d40f9f2
commit 7e02544db4
+1 -4
View File
@@ -99,17 +99,14 @@
if(findtext(temp, "*", 1, 2)) //emotes
return
world << "Text after stuff is [temp]"
temp = copytext(trim_left(temp), 1, rand(5,8))
world << "Text after trimming is [temp]"
var/trimmed = trim_left(temp)
if(length(trimmed))
if(append)
temp += pick(append)
say(temp)
winset(client, "input", "text=[null]")
winset(client, "input", "text=[null]")
/mob/living/carbon/human/say_understands(var/other,var/datum/language/speaking = null)