2020-10-28 23:17:18 +01:00
|
|
|
--[[
|
2020-10-29 10:09:30 +01:00
|
|
|
********************************************
|
|
|
|
*** Mesecons Stealthnodes ***
|
|
|
|
********************************************
|
2020-10-28 23:17:18 +01:00
|
|
|
|
2020-10-29 10:09:30 +01:00
|
|
|
A mod for Minetest to register various Ghoststones.
|
2020-10-28 23:17:18 +01:00
|
|
|
|
|
|
|
]]--
|
|
|
|
|
|
|
|
stealthnode = {}
|
|
|
|
stealthnode.version = "1"
|
2020-10-29 10:09:30 +01:00
|
|
|
stealthnode.revision = "5"
|
2020-10-28 23:17:18 +01:00
|
|
|
|
2020-10-29 10:09:30 +01:00
|
|
|
local modpath = minetest.get_modpath("mesecons_stealthnodes")
|
2020-10-28 23:17:18 +01:00
|
|
|
|
2020-10-29 10:09:30 +01:00
|
|
|
dofile(modpath .. "/register.lua")
|
|
|
|
dofile(modpath .. "/nodes.lua")
|
2020-10-28 23:17:18 +01:00
|
|
|
|
2020-10-29 10:09:30 +01:00
|
|
|
print("[MOD] Mesecons Stealthnodes loaded.")
|
|
|
|
minetest.log("info", "[MOD] Mesecons Stealthnodes loaded.")
|