summaryrefslogtreecommitdiff
path: root/auto_yards/nodes/(-1897,10,-921).lua
diff options
context:
space:
mode:
authorautocommitter <autocommitter@linux-forks.de>2024-10-15 22:37:42 +0200
committerautocommitter <autocommitter@linux-forks.de>2024-10-15 22:37:42 +0200
commit572b186e28ddc2a630613765c0f0780b4664380f (patch)
treee93412c97c577b04bbf12749bfe61470e001063a /auto_yards/nodes/(-1897,10,-921).lua
parent5c7f77725394d47ce0b907aabf885ea207a507bd (diff)
downloadluaatc_envs-572b186e28ddc2a630613765c0f0780b4664380f.tar.gz
luaatc_envs-572b186e28ddc2a630613765c0f0780b4664380f.tar.bz2
luaatc_envs-572b186e28ddc2a630613765c0f0780b4664380f.zip
State at 2024-10-15HEADmaster
Diffstat (limited to 'auto_yards/nodes/(-1897,10,-921).lua')
-rw-r--r--auto_yards/nodes/(-1897,10,-921).lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/auto_yards/nodes/(-1897,10,-921).lua b/auto_yards/nodes/(-1897,10,-921).lua
deleted file mode 100644
index 98955fa..0000000
--- a/auto_yards/nodes/(-1897,10,-921).lua
+++ /dev/null
@@ -1,16 +0,0 @@
-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