diff options
author | cheapie <no-email-for-you@example.com> | 2025-03-22 21:55:38 -0500 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2025-03-22 21:55:38 -0500 |
commit | 2a2d7f18755845e2c68f872918261f4526d3cafb (patch) | |
tree | 2ef4b2497af351e2674b612e7c84e05fa8d78c95 /callbuttons.lua | |
parent | 690374449d39aefe995c380b951aecdd18374ef3 (diff) | |
download | celevator-2a2d7f18755845e2c68f872918261f4526d3cafb.tar celevator-2a2d7f18755845e2c68f872918261f4526d3cafb.tar.gz celevator-2a2d7f18755845e2c68f872918261f4526d3cafb.tar.bz2 celevator-2a2d7f18755845e2c68f872918261f4526d3cafb.tar.xz celevator-2a2d7f18755845e2c68f872918261f4526d3cafb.zip |
Improve robustness against players doing weird unsupported things
Diffstat (limited to 'callbuttons.lua')
-rw-r--r-- | callbuttons.lua | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/callbuttons.lua b/callbuttons.lua index 58cd40d..7e19de6 100644 --- a/callbuttons.lua +++ b/callbuttons.lua @@ -239,3 +239,35 @@ for _,state in ipairs(validstates) do end, }) end + +minetest.register_abm({ + label = "Check call buttons for missing/replaced controllers", + nodenames = {"group:_celevator_callbutton",}, + interval = 15, + chance = 1, + action = function(pos) + local meta = minetest.get_meta(pos) + local carid = meta:get_int("carid") + if not (carid and carid > 0) then return end --Not set up yet + local carinfo = minetest.deserialize(celevator.storage:get_string("car"..carid)) + if not carinfo then + meta:set_string("infotext","Error reading car information!\nPlease remove and replace this node.") + return + end + local iscontroller = (carinfo.controllerpos and celevator.controller.iscontroller(carinfo.controllerpos)) + local isdispatcher = (carinfo.dispatcherpos and celevator.dispatcher.isdispatcher(carinfo.dispatcherpos)) + if not (iscontroller or isdispatcher) then + meta:set_string("infotext","Controller/dispatcher is missing!\nPlease remove and replace this node.") + return + end + local metacarid = 0 + if iscontroller then + metacarid = celevator.get_meta(carinfo.controllerpos):get_int("carid") + elseif isdispatcher then + metacarid = celevator.get_meta(carinfo.dispatcherpos):get_int("carid") + end + if metacarid ~= carid then + meta:set_string("infotext","Controller/dispatcher found but with incorrect ID!\nPlease remove and replace this node.") + end + end, +}) |