2021-09-05 18:30:55 -05:00

15 lines
330 B
Lua

local modpath = minetest.get_modpath("explodingchest")
exploding_chest = {}
dofile(modpath .. "/config.lua")
dofile(modpath .. "/trap.lua")
dofile(modpath .. "/overrides.lua")
dofile(modpath .. "/api.lua")
if minetest.settings:get_bool("log_mods") then
minetest.log("action", "[ExplodingChest] Loaded.")
end
modpath = nil