Skip to content

Commit

Permalink
Update init.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
Elkien3 committed Dec 13, 2022
1 parent 4352735 commit eaafa57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mods/farming/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ function farming.plant_growth_timer(pos, elapsed, node_name)
local meta = minetest.get_meta(pos)
local characteristics = get_biome_characteristic(pos)
local boost = 2
if characteristics and minetest.get_node_group(node_name, characteristics) > 0 then
if characteristics and minetest.get_item_group(node_name, characteristics) > 0 then
boost = 1
end
local t = meta:get_int("t")
Expand Down

0 comments on commit eaafa57

Please sign in to comment.