Added sanitize() to rune "communicate".

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1325 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
rastaf.zero@gmail.com
2011-03-31 16:58:12 +00:00
parent 2cf57972b0
commit d930bfe06e

View File

@@ -493,9 +493,10 @@ var/list/sacrificed = list()
usr.say("O bidai nabora se'sma!")
else
usr.whisper("O bidai nabora se'sma!")
var/input = input(usr, "Please choose a message to tell to the other acolytes.", "Voice of Blood", "")
var/input = input(usr, "Please choose a message to tell to the other acolytes.", "Voice of Blood", "") as text|null
if(!input)
return fizzle()
input = sanitize(input)
if(istype(src,/obj/rune))
usr.say("[input]")
else