Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Increase chance for getting seeds
  • Loading branch information
PilzAdam committed Jun 2, 2013
1 parent a654c0d commit 29f1f01
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mods/farming/init.lua
Expand Up @@ -58,7 +58,7 @@ minetest.register_abm({
--
-- Hoes
--
-- turns nodes with group soil=1 into soil; drop seeds if plowing grass
-- turns nodes with group soil=1 into soil
local function hoe_on_use(itemstack, user, pointed_thing, uses)
local pt = pointed_thing
-- check if pointing at a node
Expand Down Expand Up @@ -189,7 +189,7 @@ minetest.register_node(":default:grass_1", {
drop = {
max_items = 1,
items = {
{items = {'farming:seed_wheat'},rarity = 20},
{items = {'farming:seed_wheat'},rarity = 5},
{items = {'default:grass_1'}},
}
},
Expand Down Expand Up @@ -221,7 +221,7 @@ for i=2,5 do
drop = {
max_items = 1,
items = {
{items = {'farming:seed_wheat'},rarity = 20},
{items = {'farming:seed_wheat'},rarity = 5},
{items = {'default:grass_1'}},
}
},
Expand All @@ -248,7 +248,7 @@ minetest.register_node(":default:junglegrass", {
drop = {
max_items = 1,
items = {
{items = {'farming:seed_cotton'},rarity = 20},
{items = {'farming:seed_cotton'},rarity = 8},
{items = {'default:junglegrass'}},
}
},
Expand Down

0 comments on commit 29f1f01

Please sign in to comment.