From 36dd4f32a0e761e41de01f03d61fb8fe32caa4ba Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 12 Jan 2017 07:48:13 +0100 Subject: [PATCH] Remove fuels --- mods/farming/pumpkin.lua | 7 ------- mods/farming/wheat.lua | 12 ------------ 2 files changed, 19 deletions(-) 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 -})