1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-06-29 14:50:52 +02:00

better mineclone support

This commit is contained in:
tenplus1
2024-08-12 08:02:50 +01:00
parent f3a7e9350f
commit 09b06ea72a
5 changed files with 54 additions and 37 deletions

View File

@ -12,7 +12,7 @@ local S = minetest.get_translator("farming")
farming = {
mod = "redo",
version = "20240811",
version = "20240812",
path = minetest.get_modpath("farming"),
select = {
type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}
@ -735,7 +735,7 @@ end
-- recipe item list and alternatives
dofile(farming.path .. "/items_list.lua")
dofile(farming.path .. "/item_list.lua")
-- important items
@ -816,8 +816,8 @@ ddoo("ginger.lua", farming.ginger)
-- register food items, non-food items, recipes and stairs
dofile(farming.path .. "/items_non_food.lua")
dofile(farming.path .. "/items_food.lua")
dofile(farming.path .. "/item_non_food.lua")
dofile(farming.path .. "/item_food.lua")
dofile(farming.path .. "/item_recipes.lua")
dofile(farming.path .. "/item_stairs.lua")