merge upstream commit: Doors: Remove unnecessary node lookups

This commit is contained in:
tchncs 2016-07-16 14:12:57 +02:00
parent 0c122236ef
commit 980347343a
237 changed files with 5338 additions and 0 deletions

14
mods/farming/sugar.lua Normal file
View file

@ -0,0 +1,14 @@
--= Sugar
minetest.register_craftitem("farming:sugar", {
description = "Sugar",
inventory_image = "farming_sugar.png",
})
minetest.register_craft({
type = "cooking",
cooktime = 3,
output = "farming:sugar 2",
recipe = "default:papyrus",
})