limit quarry depth to 30

This commit is contained in:
Thomas Rudin 2019-03-17 20:55:39 +01:00
parent 7a32be742c
commit c832f3df32
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ minetest.register_craft({
})
local quarry_dig_above_nodes = 3 -- How far above the quarry we will dig nodes
local quarry_max_depth = 50
local quarry_max_depth = 30
local quarry_demand = 10000
local quarry_eject_dir = vector.new(0, 1, 0)