Initial, working version

This commit is contained in:
2025-12-16 01:30:22 +01:00
commit ac3f490270
19 changed files with 1274 additions and 0 deletions

23
.luacheckrc Normal file
View File

@@ -0,0 +1,23 @@
unused_args = false
allow_defined_top = true
exclude_files = {".luacheckrc"}
globals = {
-- This is needed so running luacheck on a single file will recognize it
"stripped_tree",
}
read_globals = {
string = {fields = {"split"}},
table = {fields = {"copy", "getn"}},
-- Builtin
"core", "vector", "ItemStack",
"dump", "DIR_DELIM", "VoxelArea", "Settings",
-- MTG
"default", "sfinv", "creative",
-- Dependencies
"moretrees", "ethereal", "moreores"
}