small fix, added the ability to enable debug for debugging code
Some checks failed
luacheck / luacheck (push) Has been cancelled

This commit is contained in:
Vitaliy Olkhin 2024-11-06 13:52:14 +05:00
parent 2111a21f68
commit fa610bebe3
3 changed files with 44 additions and 33 deletions

View File

@ -32,6 +32,7 @@ local settings = {
use_real_entities = true,
entity_update_interval = 0,
enable_vertical_digilines_connectivity = true,
enable_debug = false,
}
pipeworks.toggles = {}

View File

@ -349,17 +349,25 @@ function luaentity.get_objects_inside_radius(pos, radius)
end
local move_entities_globalstep_part2 = function(dtime)
local object = {}
if not luaentity.entities then
luaentity.entities = read_entities()
end
--minetest.log("action", "Dump: " .. dump(luaentity.entities))
for _, entity in pairs(luaentity.entities) do
--minetest.log("action", "entity " .. type(entity.owner))
if entity.owner ~= nil then
local object = minetest.env:get_player_by_name(entity.owner)
if object then
--minetest.chat_send_all("online: " .. dump(entity.owner))
--minetest.log("action", "pipeworks: активная передача по трубам игрок в сети: " .. entity.owner)
if entity.owner ~= nil then
object = minetest.env:get_player_by_name(entity.owner)
end
if object or entity.owner ~= nil then
--minetest.chat_send_all("online: " .. dump(entity.owner))
if pipeworks.enable_debug then
minetest.log("action", "pipeworks: активная передача по трубам игрок в сети: " .. entity.owner)
end
local master = entity._attached_entities_master
local master_def = master and entity._attached_entities[master]
local master_entity = master_def and master_def.entity
@ -395,7 +403,7 @@ local move_entities_globalstep_part2 = function(dtime)
entity:on_step(dtime)
end
end
end
end
end
end

View File

@ -100,3 +100,5 @@ pipeworks_log_teleport_tubes (Log Teleport Tubes) bool false
# Behavior of print() inside a lua tube. By default, this emits a message into actionstream.
# Set it to noop if you wish to disable that behavior.
pipeworks_lua_tube_print_behavior (Behavior of print in Lua Tube) enum log log,noop
pipeworks_enable_debug (Enable debug) bool false