Splittext include_delimiters can't be used as named argument.
Numbered Steps to Reproduce Problem:
Try to compile the attached snippet in 510
Code Snippet (if applicable) to Reproduce Problem:
/mob/verb/test()
var/word = "a,b,c"
var/sep = ","
var/list/test = list()
test = splittext(word,sep,include_delimiters=1)
for(var/a in test)
world << a
Expected Results:
Build passes
Actual Results:
error: splittext: expected 2 to 5 arguments (found 1)
When does the problem NOT occur?
Did the problem NOT occur in any earlier versions? If so, what was the last version that worked? (Visit http://www.byond.com/download/build to download old versions for testing.) 510 only proc
Workarounds:
replacing it with splittext(word,sep,1,0,1)
The majority of non-datumic functions do not support named args.