biomegen fixes #2

Merged
cora merged 2 commits from biomegen into master 2022-05-21 17:02:46 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 2091c6ac72 - Show all commits

View File

@ -21,8 +21,8 @@ minetest.register_on_joinplayer(function(player)
end)
minetest.register_on_leaveplayer(function(player)
if multi_map.hud.enabled and player_huds[player:get_player_name()] then
player_huds[player:get_player_name()] = nil
if multi_map.hud.enabled and saved_huds[player:get_player_name()] then
saved_huds[player:get_player_name()] = nil
end
end)