summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--auto_yards/nodes/(-1897,10,-921).lua16
1 files changed, 16 insertions, 0 deletions
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