moved chat logging out of loop

This commit is contained in:
Tai @ Flex 2016-11-10 21:46:47 +00:00
parent ae2c01ff4b
commit 374540fdba
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ end)
function irc:sendLocal(message)
for name, _ in pairs(self.joined_players) do
minetest.chat_send_player(name, message)
irc:logChat(message, name)
end
irc:logChat(message, name)
end