diff options
Diffstat (limited to '')
-rw-r--r-- | LuaSL/src/LuaSL_compile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c index ea68a2a..5fab5c4 100644 --- a/LuaSL/src/LuaSL_compile.c +++ b/LuaSL/src/LuaSL_compile.c | |||
@@ -2151,9 +2151,9 @@ static void outputStateToken(FILE *file, outputMode mode, LSL_Leaf *content) | |||
2151 | { | 2151 | { |
2152 | fprintf(file, "\n\n--[[state]] "); | 2152 | fprintf(file, "\n\n--[[state]] "); |
2153 | outputText(file, &(state->name), !(LSL_NOIGNORE & content->toKen->flags)); | 2153 | outputText(file, &(state->name), !(LSL_NOIGNORE & content->toKen->flags)); |
2154 | fprintf(file, " = nil;"); | 2154 | fprintf(file, " = {};"); |
2155 | outputRawBlock(file, mode, state->block, FALSE); | ||
2155 | } | 2156 | } |
2156 | outputRawBlock(file, mode, state->block, TRUE); | ||
2157 | } | 2157 | } |
2158 | } | 2158 | } |
2159 | } | 2159 | } |