remove unuseful code

This commit is contained in:
AFCMS 2021-04-18 00:10:11 +02:00
parent bcd058feb1
commit f967aa3d51
1 changed files with 2 additions and 2 deletions

View File

@ -397,9 +397,9 @@ end
-- false otherwise.
mcl_spawn.get_bed_spawn_pos = function(player)
local spawn, custom_spawn = nil, false
if player ~= nil and player:is_player() then
if player and player:is_player() then
local attr = player:get_meta():get_string("mcl_beds:spawn")
if attr ~= nil and attr ~= "" then
if attr and attr ~= "" then
spawn = minetest.string_to_pos(attr)
custom_spawn = true
end