Update chatplus

This commit is contained in:
rubenwardy 2017-10-05 23:10:52 +01:00
parent 2722b16a81
commit 960ee92607

View file

@ -189,7 +189,7 @@ function chatplus.send(from, msg)
if msg:sub(1, 1) == "/" then if msg:sub(1, 1) == "/" then
return false return false
end end
if not minetest.check_player_privs(from, {shout = true}) then if not minetest.check_player_privs(from, {shout = true}) then
return nil return nil
end end
@ -219,6 +219,8 @@ function chatplus.send(from, msg)
if res == nil or res == true then if res == nil or res == true then
minetest.chat_send_player(to, "<" .. from .. "> " .. msg) minetest.chat_send_player(to, "<" .. from .. "> " .. msg)
end end
elseif minetest.features.no_chat_message_prediction then
minetest.chat_send_player(from, "<" .. from .. "> " .. msg)
end end
end end
return true return true
@ -228,6 +230,9 @@ end
-- Minetest callbacks -- Minetest callbacks
minetest.register_on_chat_message(function(...) minetest.register_on_chat_message(function(...)
local ret = chatplus.send(...) local ret = chatplus.send(...)
if ret and minetest.global_exists("irc") and irc.on_chatmessage then
irc.on_chatmessage(...)
end
return ret return ret
end) end)
minetest.register_on_joinplayer(function(player) minetest.register_on_joinplayer(function(player)