capturetheflag/mods/ctf_pvp_engine/ctf/diplomacy.lua

13 lines
191 B
Lua
Raw Normal View History

-- 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)
2019-08-28 16:05:59 +00:00
return "war"
end