Improve mapgen, add grass, and include the fill tool.

This commit is contained in:
Signal 2026-01-15 18:54:28 -05:00
parent 1e897665bb
commit 4659a008ac
86 changed files with 1098 additions and 293 deletions

View file

@ -16,6 +16,20 @@
- Gravel
--]]
-- MARK: - Wood
rgt.register_item("stick", {
inventory_image = "rgt_stick.png"
})
minetest.register_craft {
recipe = {
{"group:planks", "group:planks"},
{"group:planks", "group:planks"},
},
output = "workbench"
}
-- MARK: - Coal