Fixed refusal when deathswap is full

master
Elias Fleckenstein 2020-10-28 16:49:55 +01:00
parent eba06fe1ad
commit 1a21ebbbd3
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ deathswap.players = {}
minetest.register_on_prejoinplayer(function()
if #deathswap.players == 2 then
return false, "Deathswap is full!"
return "Deathswap is full!"
end
end)