LuaToolkit
LuaToolkit copied to clipboard
missing `end` in decompilation
When doing something like below it won't properly close the if chain.
if A then
return 0;
elseif B then
return 1;
elseif C then
return 2;
end