1
0
mirror of https://github.com/AntumMT/mod-slimes.git synced 2024-09-27 14:50:34 +02:00
mod-slimes/init.lua
TomasJLuis 02a4fa2abe Update init.lua
initial commit
2015-04-10 11:09:42 +02:00

14 lines
458 B
Lua

-- Slimes by TenPlus1 and TomasJLuis
dofile(minetest.get_modpath("slimes").."/greenslimes.lua")
dofile(minetest.get_modpath("slimes").."/lavaslimes.lua")
-- cannot find mesecons?, craft glue instead
if not minetest.get_modpath("mesecons_materials") then
minetest.register_craftitem(":mesecons_materials:glue", {
image = "jeija_glue.png",
description="Glue",
})
end
if minetest.setting_get("log_mods") then minetest.log("action", "Slimes loaded") end