mirror of
https://github.com/luanti-org/luanti.git
synced 2025-09-15 18:57:08 +00:00
15 lines
285 B
Lua
15 lines
285 B
Lua
--
|
|
-- Experimental things
|
|
--
|
|
|
|
experimental = {}
|
|
|
|
dofile(minetest.get_modpath("experimental").."/detached.lua")
|
|
dofile(minetest.get_modpath("experimental").."/commands.lua")
|
|
|
|
function experimental.print_to_everything(msg)
|
|
minetest.log("action", msg)
|
|
minetest.chat_send_all(msg)
|
|
end
|
|
|
|
|