mirror of
https://github.com/minetest-mods/irc.git
synced 2024-12-28 09:40:17 +01:00
Added message when a user changes nickname
This commit is contained in:
parent
4386b9bbd2
commit
0ebe49f0b1
@ -103,9 +103,14 @@ end);
|
|||||||
|
|
||||||
irc.register_callback("nick_change", function ( from, old_nick )
|
irc.register_callback("nick_change", function ( from, old_nick )
|
||||||
if (not mt_irc.connect_ok) then return; end
|
if (not mt_irc.connect_ok) then return; end
|
||||||
|
local text = "["..old_nick.." changed his nick to "..from.."]";
|
||||||
|
for k, v in pairs(mt_irc.connected_players) do
|
||||||
|
if (v) then minetest.chat_send_player(k, text); end
|
||||||
|
end
|
||||||
end);
|
end);
|
||||||
|
|
||||||
irc.register_callback("channel_act", function ( servinfo, from, message)
|
irc.register_callback("channel_act", function ( servinfo, from, message)
|
||||||
|
if (not mt_irc.connect_ok) then return; end
|
||||||
local text = "*** "..from.." "..message;
|
local text = "*** "..from.." "..message;
|
||||||
for k, v in pairs(mt_irc.connected_players) do
|
for k, v in pairs(mt_irc.connected_players) do
|
||||||
if (v) then minetest.chat_send_player(k, text); end
|
if (v) then minetest.chat_send_player(k, text); end
|
||||||
|
Loading…
Reference in New Issue
Block a user