Move chatcommands to a seperate mod

This commit is contained in:
a-bad-dev 2025-12-12 15:56:50 -04:00
commit 44c1be6a55
292 changed files with 50 additions and 45 deletions

View file

@ -0,0 +1,12 @@
-- ctf_ranged/init.lua
local modpath = minetest.get_modpath("ctf_ranged")
ctf_ranged = {}
dofile(modpath.."/settings.lua")
dofile(modpath.."/wep_logic.lua")
dofile(modpath.."/wep_defns.lua")
dofile(modpath.."/wep_recipes.lua")
dofile(modpath.."/custom_controls.lua")
dofile(modpath.."/energy_gen.lua")