mirror of
https://github.com/Relintai/broken_seals.git
synced 2025-01-08 01:49:35 +01:00
Fix handling else ifs.
This commit is contained in:
parent
a92c488a82
commit
e28b7cfb82
@ -306,7 +306,7 @@ class GDSScope:
|
||||
if type == GDScopeType.GDSCOPE_TYPE_IF:
|
||||
s += "if (" + scope_data + ") {"
|
||||
elif type == GDScopeType.GDSCOPE_TYPE_ELIF:
|
||||
s += "if (" + scope_data + ") {"
|
||||
s += "else if (" + scope_data + ") {"
|
||||
elif type == GDScopeType.GDSCOPE_TYPE_ELSE:
|
||||
s += "else {"
|
||||
elif type == GDScopeType.GDSCOPE_TYPE_FOR:
|
||||
|
Loading…
Reference in New Issue
Block a user