1
0
Fork 0

Compare commits

...

1 Commits

Author SHA1 Message Date
PrairieWind 8981ea07b8 Make cobblestone generators work on nether roof 2023-04-04 10:44:56 -06:00
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ minetest.register_abm({
neighbors = {"group:water"},
interval = 1,
chance = 1,
min_y = mcl_vars.mg_end_min,
min_y = mcl_vars.mg_bedrock_nether_top_max,
action = function(pos, node, active_object_count, active_object_count_wider)
local water = minetest.find_nodes_in_area({x=pos.x-1, y=pos.y-1, z=pos.z-1}, {x=pos.x+1, y=pos.y+1, z=pos.z+1}, "group:water")