capturetheflag/mods/ctf_pvp_engine/ctf/diplomacy.lua
2019-08-28 18:46:14 +01:00

12 lines
191 B
Lua

-- diplo states: war, peace, alliance
ctf.diplo = {
diplo = {}
}
ctf.register_on_load(function(table)
ctf.diplo.diplo = table.diplo
end)
function ctf.diplo.get(one,two)
return "war"
end