mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-02 00:00:37 +02:00
disabled some debug output
This commit is contained in:
@ -27,7 +27,7 @@ local function forceload_dig(pos, pos1, pos2)
|
|||||||
|
|
||||||
flpos = technic.compute_forceload_positions_between_points(minpos, maxpos)
|
flpos = technic.compute_forceload_positions_between_points(minpos, maxpos)
|
||||||
technic.forceload_on_flposes(flpos, meta)
|
technic.forceload_on_flposes(flpos, meta)
|
||||||
print("DEBUG: forceload_dig(), currently forceloaded = " .. dump(technic.currently_forceloaded_positions(meta)))
|
-- print("DEBUG: forceload_dig(), currently forceloaded = " .. dump(technic.currently_forceloaded_positions(meta)))
|
||||||
end
|
end
|
||||||
|
|
||||||
-- keeps only the quarry loaded
|
-- keeps only the quarry loaded
|
||||||
@ -38,7 +38,7 @@ local function forceload_purge(pos)
|
|||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
flpos = technic.compute_forceload_positions_between_points(pos, pos)
|
flpos = technic.compute_forceload_positions_between_points(pos, pos)
|
||||||
technic.forceload_on_flposes(flpos, meta)
|
technic.forceload_on_flposes(flpos, meta)
|
||||||
print("DEBUG: forceload_dig(), currently forceloaded = " .. dump(technic.currently_forceloaded_positions(meta)))
|
-- print("DEBUG: forceload_dig(), currently forceloaded = " .. dump(technic.currently_forceloaded_positions(meta)))
|
||||||
end
|
end
|
||||||
|
|
||||||
local function forceload_off(meta)
|
local function forceload_off(meta)
|
||||||
|
Reference in New Issue
Block a user