diff --git a/mods/farming/pumpkin.lua b/mods/farming/pumpkin.lua index 0019b4616..350a87688 100644 --- a/mods/farming/pumpkin.lua +++ b/mods/farming/pumpkin.lua @@ -289,10 +289,3 @@ minetest.register_craft({ recipe = {"farming:pumpkin_face"} }) - --- ========= FUEL ========= -minetest.register_craft({ - type = "fuel", - recipe = "farming:pumpkin_seed", - burntime = 1 -}) diff --git a/mods/farming/wheat.lua b/mods/farming/wheat.lua index 174b82486..5cd874469 100644 --- a/mods/farming/wheat.lua +++ b/mods/farming/wheat.lua @@ -158,15 +158,3 @@ minetest.register_craftitem("farming:bread", { on_use = minetest.item_eat(5) }) --- ========= FUEL ========= -minetest.register_craft({ - type = "fuel", - recipe = "farming:wheat_seed", - burntime = 1 -}) - -minetest.register_craft({ - type = "fuel", - recipe = "farming:wheat_harvested", - burntime = 2 -})