macrotintas/init.lua

29 lines
628 B
Lua
Raw Permalink Normal View History

2017-05-30 09:30:19 -07:00
--[[
Mod Tintas_Reais para Minetest
Copyright (C) 2017 BrunoMine (https://github.com/BrunoMine)
Recebeste uma cópia da GNU Lesser General
Public License junto com esse software,
se não, veja em <http://www.gnu.org/licenses/>.
Inicializador de scripts
]]
-- Notificador de Inicializador
local notificar = function(msg)
if minetest.setting_get("log_mods") then
2017-05-31 14:35:24 -07:00
minetest.debug("[MACROTINTAS]"..msg)
2017-05-30 09:30:19 -07:00
end
end
2017-05-31 14:35:24 -07:00
local modpath = minetest.get_modpath("macrotintas")
2017-05-30 09:30:19 -07:00
-- Carregar scripts
notificar("Carregando...")
-- Trocar receitas
dofile(modpath.."/receitas.lua")
dofile(modpath.."/texturas.lua")
notificar("OK")