mirror of
https://github.com/minetest-mods/towercrane.git
synced 2024-11-22 15:23:51 +01:00
Fix rare crash and irrecoverable operator state (#16)
* Fix rare crash and irrecoverable operator state * Do not restore if the player is not an operator * Fix typo
This commit is contained in:
parent
af87d6278c
commit
b7bed50ac7
17
control.lua
17
control.lua
@ -103,7 +103,7 @@ end
|
|||||||
local function reset_operator_privs(player)
|
local function reset_operator_privs(player)
|
||||||
local privs = minetest.get_player_privs(player:get_player_name())
|
local privs = minetest.get_player_privs(player:get_player_name())
|
||||||
local meta = player:get_meta()
|
local meta = player:get_meta()
|
||||||
if meta and privs then
|
if meta and privs and meta:get_int("towercrane_isoperator") ~= 0 then
|
||||||
meta:set_string("towercrane_pos", "")
|
meta:set_string("towercrane_pos", "")
|
||||||
-- restore the player privs default values
|
-- restore the player privs default values
|
||||||
meta:set_int("towercrane_isoperator", 0)
|
meta:set_int("towercrane_isoperator", 0)
|
||||||
@ -270,6 +270,7 @@ minetest.register_node("towercrane:mast_ctrl_on", {
|
|||||||
meta:set_string("infotext", S("Switch crane on/off"))
|
meta:set_string("infotext", S("Switch crane on/off"))
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
drop = "",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
light_source = 3,
|
light_source = 3,
|
||||||
@ -295,8 +296,14 @@ minetest.register_node("towercrane:mast_ctrl_off", {
|
|||||||
if set_operator_privs(clicker, pos) then
|
if set_operator_privs(clicker, pos) then
|
||||||
start_crane(pos, clicker)
|
start_crane(pos, clicker)
|
||||||
local pos1, pos2 = calc_construction_area(pos)
|
local pos1, pos2 = calc_construction_area(pos)
|
||||||
-- control player every second
|
if pos1 and pos2 then
|
||||||
minetest.after(1, control_player, pos, pos1, pos2, clicker:get_player_name())
|
-- control player every second
|
||||||
|
minetest.after(1, control_player, pos, pos1, pos2, clicker:get_player_name())
|
||||||
|
else
|
||||||
|
-- Something weird happened, restore privileges
|
||||||
|
stop_crane(pos, clicker)
|
||||||
|
reset_operator_privs(clicker)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
@ -307,6 +314,7 @@ minetest.register_node("towercrane:mast_ctrl_off", {
|
|||||||
meta:set_string("infotext", S("Switch crane on/off"))
|
meta:set_string("infotext", S("Switch crane on/off"))
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
drop = "",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
@ -315,9 +323,10 @@ minetest.register_node("towercrane:mast_ctrl_off", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_on_joinplayer(function(player)
|
minetest.register_on_joinplayer(function(player)
|
||||||
|
-- To recover from a crash, this must be done unconditionally
|
||||||
|
reset_operator_privs(player)
|
||||||
local pos = get_my_crane_pos(player)
|
local pos = get_my_crane_pos(player)
|
||||||
if pos then
|
if pos then
|
||||||
reset_operator_privs(player)
|
|
||||||
stop_crane(pos, player)
|
stop_crane(pos, player)
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
Loading…
Reference in New Issue
Block a user