mirror of
https://github.com/mt-mods/playerfactions.git
synced 2024-11-26 01:03:48 +01:00
bundle mtt related lines
This commit is contained in:
parent
a27dcfd62c
commit
605561d2a4
9
init.lua
9
init.lua
@ -1,9 +1,6 @@
|
|||||||
-- Translation support
|
-- Translation support
|
||||||
local S = minetest.get_translator("playerfactions")
|
local S = minetest.get_translator("playerfactions")
|
||||||
|
|
||||||
-- For integration testing
|
|
||||||
local do_mtt = minetest.get_modpath("mtt") and mtt.enabled
|
|
||||||
|
|
||||||
-- Data
|
-- Data
|
||||||
factions = {}
|
factions = {}
|
||||||
-- This variable "version" can be used by other mods to check the compatibility of this mod
|
-- This variable "version" can be used by other mods to check the compatibility of this mod
|
||||||
@ -194,7 +191,6 @@ end
|
|||||||
|
|
||||||
-- Chat commands
|
-- Chat commands
|
||||||
local chat = {}
|
local chat = {}
|
||||||
if do_mtt then factions.chat = chat end
|
|
||||||
|
|
||||||
function chat.create(name, params, not_admin)
|
function chat.create(name, params, not_admin)
|
||||||
local faction_name = params[2]
|
local faction_name = params[2]
|
||||||
@ -571,7 +567,10 @@ do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if do_mtt then
|
-- Integration testing
|
||||||
|
if minetest.get_modpath("mtt") and mtt.enabled then
|
||||||
|
factions.chat = chat
|
||||||
|
factions.handle_command = handle_command
|
||||||
dofile(minetest.get_modpath(minetest.get_current_modname()) .. "/mtt.lua")
|
dofile(minetest.get_modpath(minetest.get_current_modname()) .. "/mtt.lua")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user