Lua.hpp: Fix an extra space being added

Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
Username404 2023-08-07 00:34:27 +02:00
parent 85a3582612
commit c37f91caf3
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -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);