17 lines
320 B
Lua
17 lines
320 B
Lua
--
|
|
-- Minetest player cloaking mod
|
|
--
|
|
-- © 2018 by luk3yx
|
|
--
|
|
local path = minetest.get_modpath('cloaking')
|
|
dofile(path .. '/core.lua')
|
|
dofile(path .. '/chatcommands.lua')
|
|
|
|
if minetest.get_modpath('chat3') then
|
|
dofile(path .. '/chat3.lua')
|
|
end
|
|
|
|
if minetest.get_modpath('irc') then
|
|
dofile(path .. '/irc.lua')
|
|
end
|