Simplified cocoa farming

This commit is contained in:
tenplus1 2015-04-09 09:56:10 +01:00
parent 851234eb2c
commit 450c2be4c3
2 changed files with 2 additions and 6 deletions

View File

@ -1,8 +1,4 @@
-- Override default jungletree, add tree=2 for cocoa placement
minetest.override_item("default:jungletree", {groups = {tree=2,choppy=2,oddly_breakable_by_hand=1,flammable=2}})
-- Place Cocoa -- Place Cocoa
function place_cocoa(itemstack, placer, pointed_thing, plantname) function place_cocoa(itemstack, placer, pointed_thing, plantname)
@ -21,7 +17,7 @@ function place_cocoa(itemstack, placer, pointed_thing, plantname)
end end
-- check if pointing at jungletree -- check if pointing at jungletree
if minetest.get_item_group(under.name, "tree") ~= 2 then if under.name ~= "default:jungletree" then
return return
end end

View File

@ -1,5 +1,5 @@
--[[ --[[
Minetest Farming Redo Mod 1.12 (1st March 2015) Minetest Farming Redo Mod 1.12 (9th April 2015)
by TenPlus1 by TenPlus1
]] ]]