1
0
mirror of https://github.com/Uberi/Minetest-WorldEdit.git synced 2025-10-15 23:25:39 +02:00

Add some basic testing to worldedit_commands

This commit is contained in:
sfan5
2025-09-20 14:59:04 +02:00
parent 5121ffab8b
commit 3a79209268
3 changed files with 100 additions and 3 deletions

View File

@@ -152,6 +152,10 @@ do
}) do
dofile(modpath .. "/" .. name .. ".lua")
end
if worldedit.register_test then
dofile(modpath .. "/test/init.lua")
end
end
@@ -344,4 +348,3 @@ worldedit.register_command("reset", {
return true, S("region reset")
end,
})