summaryrefslogtreecommitdiff
path: root/fs1switch.lua
diff options
context:
space:
mode:
authorcheapie <no-email-for-you@example.com>2024-11-23 18:12:33 -0600
committercheapie <no-email-for-you@example.com>2024-11-23 18:12:33 -0600
commit0be10ecc617cb8593cef8012658f3dd2be069528 (patch)
treee85995eda3a30696f6296b26594ecf2654f98f82 /fs1switch.lua
parentf8520241b20deb6a0c940ec95362dfb0f80af339 (diff)
downloadcelevator-0be10ecc617cb8593cef8012658f3dd2be069528.tar
celevator-0be10ecc617cb8593cef8012658f3dd2be069528.tar.gz
celevator-0be10ecc617cb8593cef8012658f3dd2be069528.tar.bz2
celevator-0be10ecc617cb8593cef8012658f3dd2be069528.tar.xz
celevator-0be10ecc617cb8593cef8012658f3dd2be069528.zip
Fix missing protection check in fire recall switchHEADmain
Diffstat (limited to 'fs1switch.lua')
-rw-r--r--fs1switch.lua12
1 files changed, 11 insertions, 1 deletions
diff --git a/fs1switch.lua b/fs1switch.lua
index d48ff8e..5949250 100644
--- a/fs1switch.lua
+++ b/fs1switch.lua
@@ -139,11 +139,21 @@ for _,switchpos in ipairs(switchstates) do
local meta = minetest.get_meta(pos)
meta:set_string("formspec","formspec_version[7]size[8,5]field[0.5,0.5;7,1;carid;Car ID;]button[3,3.5;2,1;save;Save]")
end,
- on_receive_fields = function(pos,_,fields)
+ on_receive_fields = function(pos,_,fields,player)
local carid = tonumber(fields.carid or 0)
if not (carid and carid >= 1 and carid == math.floor(carid)) then return end
local carinfo = minetest.deserialize(celevator.storage:get_string(string.format("car%d",carid)))
if not carinfo then return end
+ local controllerpos = carinfo.controllerpos or carinfo.dispatcherpos
+ if not controllerpos then return end
+ local name = player:get_player_name()
+ if minetest.is_protected(controllerpos,name) and not minetest.check_player_privs(name,{protection_bypass=true}) then
+ if player:is_player() then
+ minetest.chat_send_player(name,"Can't connect to a controller/dispatcher you don't have access to.")
+ minetest.record_protection_violation(controllerpos,name)
+ end
+ return
+ end
if not carinfo.fs1switches then carinfo.fs1switches = {} end
table.insert(carinfo.fs1switches,{pos=pos})
celevator.storage:set_string(string.format("car%d",carid),minetest.serialize(carinfo))