Add support for new ChatMessage API.
This commit is contained in:
parent
90336231c7
commit
1f44160087
|
@ -246,6 +246,10 @@ end
|
||||||
|
|
||||||
-- Detect messages and handle them
|
-- Detect messages and handle them
|
||||||
minetest.register_on_receiving_chat_message(function(message)
|
minetest.register_on_receiving_chat_message(function(message)
|
||||||
|
if type(message) == 'table' then
|
||||||
|
message = message.message
|
||||||
|
end
|
||||||
|
|
||||||
local chan, msg = message:match('^\001SSCSM_COM\001([^\001]*)\001(.*)$')
|
local chan, msg = message:match('^\001SSCSM_COM\001([^\001]*)\001(.*)$')
|
||||||
if not chan or not msg then return end
|
if not chan or not msg then return end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue