mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-16 16:11:06 +01:00
Make cobblestone generators work on nether roof
This commit is contained in:
parent
0f64fb79c5
commit
8981ea07b8
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
|
||||
|
|
Loading…
Reference in a new issue