Prevent players from joining the channel when logged in from IRC

This commit is contained in:
luk3yx 2019-02-12 17:10:41 +13:00 committed by Diego Martínez
parent b4fbccd64a
commit 66bb7fc47d
1 changed files with 2 additions and 0 deletions

View File

@ -13,6 +13,8 @@ end
function irc.player_join(name)
if irc.joined_players[name] then
return false, "You are already in the channel"
elseif not minetest.get_player_by_name(name) then
return false, "You need to be in-game to join the channel"
end
irc.joined_players[name] = true
return true, "You joined the channel"