Lua.hpp: Fix an extra space being added
Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
parent
85a3582612
commit
c37f91caf3
|
@ -41,7 +41,7 @@ struct LuaTarget: Target {
|
|||
make_task(Condition::Statement::Branch,
|
||||
if (parseComponent.is_conditional()) {
|
||||
output << "elseif ("; transpileTree(parseComponent.condition); output << ") then";
|
||||
} else output << "else ";
|
||||
} else output << "else";
|
||||
output << separator;
|
||||
if (newLines) output << indentation;
|
||||
separate_transpileTree(parseComponent, 1);
|
||||
|
|
Loading…
Reference in New Issue