2018-04-01 05:11:07 +02:00
|
|
|
--
|
|
|
|
-- Minetest player cloaking mod
|
|
|
|
--
|
|
|
|
-- © 2018 by luk3yx
|
|
|
|
--
|
2018-04-01 08:31:55 +02:00
|
|
|
local path = minetest.get_modpath('cloaking')
|
|
|
|
dofile(path .. '/core.lua')
|
|
|
|
dofile(path .. '/chatcommands.lua')
|
2018-04-01 08:40:31 +02:00
|
|
|
|
2018-07-26 09:21:03 +02:00
|
|
|
if minetest.get_modpath('chat3') then
|
2018-04-01 08:40:31 +02:00
|
|
|
dofile(path .. '/chat3.lua')
|
|
|
|
end
|
2018-04-13 23:54:35 +02:00
|
|
|
|
2018-07-26 09:21:03 +02:00
|
|
|
if minetest.get_modpath('irc') then
|
2018-04-13 23:54:35 +02:00
|
|
|
dofile(path .. '/irc.lua')
|
|
|
|
end
|