diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2018-12-14 17:56:22 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2018-12-14 17:56:26 -0800 |
| commit | 5b6095b805c4242ca05f75be3f37e8759010528a (patch) | |
| tree | 21e88e9ca682e8d632201b1e5adf16731f435a9c /nomsu_decompiler.lua | |
| parent | b38d9e0062bf0902241dce182c3389a0c5853c40 (diff) | |
More fixes.
Diffstat (limited to 'nomsu_decompiler.lua')
| -rw-r--r-- | nomsu_decompiler.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nomsu_decompiler.lua b/nomsu_decompiler.lua index 418ba96..24a7b01 100644 --- a/nomsu_decompiler.lua +++ b/nomsu_decompiler.lua @@ -340,7 +340,7 @@ tree_to_nomsu = function(tree) end nomsu:add(target_nomsu) nomsu:add(target_nomsu:is_multiline() and " \\\n..|" or "|") - nomsu:add(recurse(tree[2])) + nomsu:add(tree_to_nomsu(tree[2])) return nomsu elseif "EscapedNomsu" == _exp_0 then nomsu = recurse(tree[1]) |
