Skip to content

Commit

Permalink
fix typo to limit polar leaves drops to 1 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
fluxionary committed Aug 26, 2022
1 parent c4d1dde commit 8103aaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node_defs.lua
Expand Up @@ -558,7 +558,7 @@ end
local poplar_leaves_drop = minetest.registered_nodes["moretrees:poplar_leaves"].drop
minetest.override_item("moretrees:poplar_leaves", {
drop = {
max_items = poplar_leaves_drop.maxitems,
max_items = poplar_leaves_drop.max_items,
items = {
{items = {"moretrees:poplar_sapling"}, rarity = 1.33 * poplar_leaves_drop.items[1].rarity },
{items = {"moretrees:poplar_small_sapling"}, rarity = 1.33 * poplar_leaves_drop.items[1].rarity },
Expand Down

0 comments on commit 8103aaa

Please sign in to comment.