From: Elias Fleckenstein Date: Wed, 28 Oct 2020 15:49:55 +0000 (+0100) Subject: Fixed refusal when deathswap is full X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=1a21ebbbd35c5501de0295aa82d6e1fc25cd73ee;p=deathswap.git Fixed refusal when deathswap is full --- diff --git a/init.lua b/init.lua index 16a18e6..56b5f00 100644 --- a/init.lua +++ b/init.lua @@ -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)