print does not add tabs between values

Issue #44 new
mezzodrinker created an issue

Take the following script:

print('value:', true)

This should, if MobTalkerScript behaved the same way as Lua does, output the following:

value:\ttrue

(where \t is a horizontal tab character)

However, the MobTalkerScript version of print outputs the following:

value:true

(note the missing tab character)

Comments (1)

  1. Log in to comment