9 lines
207 B
Lua
9 lines
207 B
Lua
local modpath = minetest.get_modpath("gunslinger") .. "/"
|
|
|
|
-- Import API
|
|
dofile(modpath .. "api.lua")
|
|
|
|
if not minetest.settings:get_bool("gunslinger.disable_builtin") then
|
|
dofile(modpath .. "guns.lua")
|
|
end
|