textutils.tabulate throwing error
jerr-it opened this issue ยท 0 comments
- Minecraft version: 1.16.4
- CC: Tweaked version: 1.94.0
textutils.tabulate
is throwing an error upon use:
pcall: bad argument #2.1 (expected string, got number)
I simply tried running the old Computercraft wikis example:
http://www.computercraft.info/wiki/Textutils.pagedTabulate
a = {1,2,3}
b = {1,2,3}
textutils.tabulate(
colors.orange, a,
colors.lightBlue, b
)
textutils.pagedTabulate
appears to have the same problem, switching tabulate
with pagedTabulate
yields the same result.