#198 Fix a crash, step 1

This commit is contained in:
kay27 2022-02-14 01:20:30 +00:00
parent 49f84f194a
commit 200536b416
1 changed files with 5 additions and 3 deletions

View File

@ -1124,10 +1124,10 @@ minetest.register_chatcommand("helpform", {
} }
) )
minetest.register_on_joinplayer(function(player) minetest.register_on_authplayer(function(playername, ip, is_success)
local playername = player:get_player_name() if not is_success then return end
local playerdata = doc.data.players[playername] local playerdata = doc.data.players[playername]
if playerdata == nil then if not playerdata then
-- Initialize player data -- Initialize player data
doc.data.players[playername] = {} doc.data.players[playername] = {}
playerdata = doc.data.players[playername] playerdata = doc.data.players[playername]
@ -1171,7 +1171,9 @@ minetest.register_on_joinplayer(function(player)
playerdata.stored_data.revealed_count[cid] = rc playerdata.stored_data.revealed_count[cid] = rc
end end
end end
end
minetest.register_on_joinplayer(function(player)
-- Add button for Inventory++ -- Add button for Inventory++
if mod_inventory_plus then if mod_inventory_plus then
inventory_plus.register_button(player, "doc_inventory_plus", S("Help")) inventory_plus.register_button(player, "doc_inventory_plus", S("Help"))