diff options
author | Rubenwardy <anjayward@gmail.com> | 2012-09-01 18:07:06 +0100 |
---|---|---|
committer | Rubenwardy <anjayward@gmail.com> | 2012-09-01 18:07:06 +0100 |
commit | 9817c63921fdfe81696a194844e253cf905611a9 (patch) | |
tree | 0bbe643a2ca171825296ead9fbf367d2c3e5c955 /sandwich.lua | |
parent | 5dc3fa20a9555997cc74f38f8314ad55b0e28ecd (diff) |
Added Oven, Meats, Sandwiches and Carrot Cake
Diffstat (limited to 'sandwich.lua')
-rw-r--r-- | sandwich.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sandwich.lua b/sandwich.lua index 08c4213..5355215 100644 --- a/sandwich.lua +++ b/sandwich.lua @@ -19,11 +19,17 @@ minetest.register_craftitem("food:sw_meat", { on_use = minetest.item_eat(10),
})
+minetest.register_craftitem("food:burger", {
+ description = "Burger",
+ inventory_image = "food_burger.png",
+ on_use = minetest.item_eat(10),
+})
+
minetest.register_craft({
output = '"food:sw_meat" 1',
recipe = {
{"",'"food:bread_slice"',""},
- {"food:butter","",'"food:butter"'},
+ {"food:butter","food:meat",'"food:butter"'},
{"",'"food:bread_slice"',""},
}
})
|