This is only a very minor change. You can either re-download and install the latest version from the download page (http://www.solarstrike.net/micromacro) and be sure to copy all files; not just micromacro.exe, or you can manually edit micromacro/lib/mods/table_addon.lua.
Here's the fixed version of the function:
Code: Select all
function table.copy(_other)
local t = {};
for i,v in pairs(_other) do
if type(v) == "table" then
t[i] = table.copy(v)
else
t[i] = v;
end
end
return t;
end