summaryrefslogtreecommitdiff
path: root/farming/rhubarb.lua
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-05-11 10:22:53 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-05-11 10:22:53 -0400
commit249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3 (patch)
tree915217a9657158d2a02eb8d93507944f618d5142 /farming/rhubarb.lua
parentaf2fedcf9998bb4a854c2cfd63e4cdad91a6dd5d (diff)
downloaddreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar.gz
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar.bz2
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar.xz
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.zip
Add readme.md mostly taken from the forum thread (and markdown-ified)
Updated several mods: castles, homedecor, digilines, farming redo, jumping, maptools, mesecons, moreblocks, moretrees, pipeworks, signs_lib, technic, unified_dyes Deleted the peaceful_npc mod, as it is broken and unmaintained.
Diffstat (limited to 'farming/rhubarb.lua')
-rw-r--r--farming/rhubarb.lua10
1 files changed, 6 insertions, 4 deletions
diff --git a/farming/rhubarb.lua b/farming/rhubarb.lua
index 30e9fba..1fa897f 100644
--- a/farming/rhubarb.lua
+++ b/farming/rhubarb.lua
@@ -5,6 +5,7 @@ local S = farming.intllib
minetest.register_craftitem("farming:rhubarb", {
description = S("Rhubarb"),
inventory_image = "farming_rhubarb.png",
+ groups = {food_rhubarb = 1, flammable = 2},
on_place = function(itemstack, placer, pointed_thing)
return farming.place_seed(itemstack, placer, pointed_thing, "farming:rhubarb_1")
end,
@@ -21,10 +22,11 @@ minetest.register_craftitem("farming:rhubarb_pie", {
minetest.register_craft({
output = "farming:rhubarb_pie",
recipe = {
- {"", "farming:sugar", ""},
- {"farming:rhubarb", "farming:rhubarb", "farming:rhubarb"},
- {"farming:wheat", "farming:wheat", "farming:wheat"},
- }
+ {"farming:baking_tray", "group:food_sugar", ""},
+ {"group:food_rhubarb", "group:food_rhubarb", "group:food_rhubarb"},
+ {"group:food_wheat", "group:food_wheat", "group:food_wheat"},
+ },
+ replacements = {{"farming:baking_tray", "farming:baking_tray"}}
})
-- rhubarb definition