2024-09-17 15:07:26 +02:00
|
|
|
local version = "2.2.1"
|
2024-09-18 01:23:26 +02:00
|
|
|
local srcpath = minetest.get_modpath("parties") .. "/src"
|
2023-08-22 00:54:59 +02:00
|
|
|
|
2024-09-17 14:36:23 +02:00
|
|
|
-- 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")
|
2024-01-03 20:17:06 +01:00
|
|
|
dofile(srcpath .. "/utils.lua")
|
2020-07-19 16:03:14 +02:00
|
|
|
|
|
|
|
minetest.log("action", "[PARTIES] Mod initialised, running version " .. version)
|