1
0
mirror of https://github.com/minetest-mods/irc.git synced 2025-02-11 22:30:21 +01:00

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

View File

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