diff options
Diffstat (limited to 'farming/raspberry.lua')
| -rw-r--r-- | farming/raspberry.lua | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/farming/raspberry.lua b/farming/raspberry.lua index 384eb59..931d2ae 100644 --- a/farming/raspberry.lua +++ b/farming/raspberry.lua @@ -5,6 +5,7 @@ local S = farming.intllib  minetest.register_craftitem("farming:raspberries", {  	description = S("Raspberries"),  	inventory_image = "farming_raspberries.png", +	groups = {food_raspberries = 1, flammable = 2},  	on_place = function(itemstack, placer, pointed_thing)  		return farming.place_seed(itemstack, placer, pointed_thing, "farming:raspberry_1")  	end, @@ -22,7 +23,7 @@ minetest.register_craft({  	output = "farming:smoothie_raspberry",  	recipe = {  		{"default:snow"}, -		{"farming:raspberries"}, +		{"group:food_raspberries"},  		{"vessels:drinking_glass"},  	}  }) | 
