Resolve some issues that the compiler doesn't spot

This commit is contained in:
Mark van Alphen
2019-03-29 16:21:15 +01:00
parent d1fc85fdf3
commit b8e840c094
16 changed files with 48 additions and 74 deletions
+2 -3
View File
@@ -64,9 +64,8 @@ proc/Ellipsis(original_msg, chance = 50)
if(chance <= 0) return "..."
if(chance >= 100) return original_msg
var/list
words = splittext(original_msg," ")
new_words = list()
var/list/words = splittext(original_msg," ")
var/list/new_words = list()
var/new_msg = ""