From e58879eef914266a2486d3e5ed154251f6a7ec88 Mon Sep 17 00:00:00 2001 From: autocommitter Date: Mon, 22 Apr 2024 14:54:28 +0200 Subject: State at 2021-09-24 --- auto_yards/nodes/(-1897,10,-921).lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 auto_yards/nodes/(-1897,10,-921).lua (limited to 'auto_yards') diff --git a/auto_yards/nodes/(-1897,10,-921).lua b/auto_yards/nodes/(-1897,10,-921).lua new file mode 100644 index 0000000..98955fa --- /dev/null +++ b/auto_yards/nodes/(-1897,10,-921).lua @@ -0,0 +1,16 @@ +local function tprint (tbl, indent) + if not indent then indent = 0 end + for k, v in pairs(tbl) do + formatting = string.rep("--", indent) .."[".. k .. "]: " + if type(v) == "table" then + print(formatting) + tprint(v, indent+1) + elseif type(v) == 'boolean' then + print(formatting .. tostring(v)) + else + print(formatting .. v) + end + end +end + +if event.punch then tprint(S) end \ No newline at end of file -- cgit v1.2.3