parties-cd2025/init.lua

23 lines
647 B
Lua
Raw Normal View History

2024-10-17 01:12:53 +02:00
local version = "2.2.2"
local srcpath = minetest.get_modpath("parties") .. "/src"
-- TODO: remove after https://github.com/minetest/modtools/issues/2
local S = minetest.get_translator("parties")
S("Parties")
S("Team up with your friends and create a party!")
2023-09-18 22:55:04 +02:00
parties = {}
parties.settings = {}
2023-09-18 22:30:57 +02:00
dofile(srcpath .. "/_load.lua")
2023-09-18 22:55:04 +02:00
dofile(minetest.get_worldpath() .. "/parties/SETTINGS.lua")
2023-04-16 00:19:19 +02:00
dofile(srcpath .. "/api.lua")
dofile(srcpath .. "/callbacks.lua")
dofile(srcpath .. "/commands.lua")
dofile(srcpath .. "/player_manager.lua")
dofile(srcpath .. "/utils.lua")
minetest.log("action", "[PARTIES] Mod initialised, running version " .. version)