Please notice that many of the scripts in the Ion scripts repository may have stopped working after the switch to Lua 5.1. They should be updated appropriately. The most important incompatibility is that the syntax
for k, v in t do ... end
for iterating the table t is no longer supported. Instead, one
must explicitly use an iterator:
for k, vin ipairs(table) do ... end.
Other incompatibilities may be found in the Lua 5.1 manual at
<http://www.lua.org/manual/5.1/manual.html#incompat>
--
Tuomo
