Ports Byond 510 preperations from Bay

Updates comment

Updates supply file
This commit is contained in:
Yoshax
2016-03-14 16:25:57 +00:00
parent 634bab54e5
commit 8be10d96dd
53 changed files with 230 additions and 248 deletions

View File

@@ -167,7 +167,7 @@ Just found out there was already a string explode function, did some benchmarkin
*/
proc/string_explode(var/string, var/separator)
if(istext(string) && istext(separator))
return text2list(string, separator)
return splittext(string, separator)
proc/n_repeat(var/string, var/amount)
if(istext(string) && isnum(amount))