Fix previous commit for BS12.

Signed-off-by: Mloc <colmohici@gmail.com>
This commit is contained in:
Mloc
2014-01-08 11:49:15 +00:00
parent 68ae21fac3
commit 794be2b31e
8 changed files with 17 additions and 19 deletions

View File

@@ -30,7 +30,7 @@
/*var/l = lentext(msg)
if(findtext(msg," ",l,l+1)==0)
msg+=" "*/
seperate = stringsplit(msg, " ")
seperate = text2list(msg, " ")
for(var/Xa = 1,Xa<seperate.len,Xa++)
var/next = Xa + 1
@@ -65,7 +65,7 @@
if(!word)
text = "[pick(heard_words)]"
else
text = pick(stringsplit(word, " "))
text = pick(text2list(word, " "))
if(lentext(text)==1)
text=uppertext(text)
else