From 65ec3f597f0f39e01fa44a14ea4971c797a015c2 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 10 Nov 2018 00:29:25 -0800 Subject: [PATCH] Recompile --- nomsu_decompiler.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nomsu_decompiler.lua b/nomsu_decompiler.lua index 2deaa7f..9880014 100644 --- a/nomsu_decompiler.lua +++ b/nomsu_decompiler.lua @@ -236,7 +236,7 @@ tree_to_nomsu = function(tree) nomsu:append("\n\n" .. tostring(("~"):rep(80)) .. "\n\n") end if chunk.type == "Block" then - nomsu:append(NomsuCode:from(chunk.source, unpack(tree_to_nomsu(chunk).bits, 2))) + nomsu:append(NomsuCode:from(chunk.source, table.unpack(tree_to_nomsu(chunk).bits, 2))) else nomsu:append(tree_to_nomsu(chunk)) end