forked from Mirrorlandia_minetest/minetest
preview: try to send mod channel messages 4 seconds after joining, not after loading mod
This commit is contained in:
parent
9eb163ab4f
commit
f7e57a0d20
@ -17,6 +17,12 @@ core.register_on_connect(function()
|
|||||||
print("Server port: " .. server_info.port)
|
print("Server port: " .. server_info.port)
|
||||||
|
|
||||||
mod_channel = core.mod_channel_join("experimental_preview")
|
mod_channel = core.mod_channel_join("experimental_preview")
|
||||||
|
|
||||||
|
core.after(4, function()
|
||||||
|
if mod_channel:is_writeable() then
|
||||||
|
mod_channel:send_all("preview talk to experimental")
|
||||||
|
end
|
||||||
|
end)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
core.register_on_modchannel_message(function(channel, sender, message)
|
core.register_on_modchannel_message(function(channel, sender, message)
|
||||||
@ -116,12 +122,6 @@ core.after(2, function()
|
|||||||
preview_minimap()
|
preview_minimap()
|
||||||
end)
|
end)
|
||||||
|
|
||||||
core.after(4, function()
|
|
||||||
if mod_channel:is_writeable() then
|
|
||||||
mod_channel:send_all("preview talk to experimental")
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
core.after(5, function()
|
core.after(5, function()
|
||||||
if core.ui.minimap then
|
if core.ui.minimap then
|
||||||
core.ui.minimap:show()
|
core.ui.minimap:show()
|
||||||
|
Loading…
Reference in New Issue
Block a user