Fixed autojoin bug

This commit is contained in:
Diego Martínez 2012-12-29 07:10:26 -02:00
parent 9ac5f86475
commit ff14ed3153
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@
minetest.register_on_joinplayer(function ( player )
irc.say(mt_irc.channel, "*** "..player:get_player_name().." joined the game");
mt_irc.connected_players[player:get_player_name()] = mt_irc.auto_join;
end);