mirror of
https://github.com/minetest/minetest.git
synced 2024-11-11 02:03:46 +01:00
17 lines
497 B
Lua
17 lines
497 B
Lua
|
--
|
||
|
-- Mod channels experimental handlers
|
||
|
--
|
||
|
local mod_channel = core.mod_channel_join("experimental_preview")
|
||
|
|
||
|
core.register_on_modchannel_message(function(channel, sender, message)
|
||
|
print("[minimal][modchannels] Server received message `" .. message
|
||
|
.. "` on channel `" .. channel .. "` from sender `" .. sender .. "`")
|
||
|
|
||
|
if mod_channel:is_writeable() then
|
||
|
mod_channel:send_all("experimental answers to preview")
|
||
|
mod_channel:leave()
|
||
|
end
|
||
|
end)
|
||
|
|
||
|
print("[minimal][modchannels] Code loaded!")
|