From e9398862b97e122cbd8ad1128850882e408a11f1 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 5 Aug 2021 15:58:14 +0100 Subject: [PATCH] wea.inspect: comment out debug --- worldeditadditions/utils/inspect.lua | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/worldeditadditions/utils/inspect.lua b/worldeditadditions/utils/inspect.lua index 3515962..f8072c9 100644 --- a/worldeditadditions/utils/inspect.lua +++ b/worldeditadditions/utils/inspect.lua @@ -22,16 +22,16 @@ local function inspect(item, maxdepth) return table.concat(result,"") end -local test = { - a = { x = 5, y = 7, z = -6 }, - http = { - port = 80, - protocol = "http" - }, - mode = "do_stuff", - apple = false, - deepa = { deepb = { deepc = { yay = "Happy Birthday!" } }} -} -print(inspect(test, 10)) +-- local test = { +-- a = { x = 5, y = 7, z = -6 }, +-- http = { +-- port = 80, +-- protocol = "http" +-- }, +-- mode = "do_stuff", +-- apple = false, +-- deepa = { deepb = { deepc = { yay = "Happy Birthday!" } }} +-- } +-- print(inspect(test)) return inspect