mirror of
https://github.com/HybridDog/nether-pack.git
synced 2025-01-13 03:10:25 +01:00
fix crash nether if player cancel join server "/nether/portal.lua:243: attempt to index a nil value"
This commit is contained in:
parent
0e9bdc48b2
commit
2a3e553b9c
@ -238,7 +238,7 @@ if nether_prisons then
|
|||||||
-- set background when player joins
|
-- set background when player joins
|
||||||
minetest.register_on_joinplayer(function(player)
|
minetest.register_on_joinplayer(function(player)
|
||||||
minetest.after(0, function(player)
|
minetest.after(0, function(player)
|
||||||
if player:getpos().y < nether.start then
|
if player and player:getpos() and player:getpos().y < nether.start then
|
||||||
update_background(player, true)
|
update_background(player, true)
|
||||||
end
|
end
|
||||||
end, player)
|
end, player)
|
||||||
|
Loading…
Reference in New Issue
Block a user