forked from github/server
doppelspieler
This commit is contained in:
parent
7a3ca3ce5b
commit
7580c0fd72
1 changed files with 4 additions and 3 deletions
|
@ -1,13 +1,14 @@
|
||||||
local function kill_multis()
|
local function kill_multis()
|
||||||
local multis = {}
|
local multis = { ["ms04"]="Wird wegen Parteiuebernahme geloescht" }
|
||||||
for k, v in multis do
|
for k, v in multis do
|
||||||
local f = get_faction(atoi36(v))
|
local f = get_faction(atoi36(k))
|
||||||
if f~=nil then
|
if f~=nil then
|
||||||
print("- marking " .. tostring(f) .. " as a multi-player.")
|
print("- marking " .. tostring(f) .. " as a multi-player.")
|
||||||
f.email="doppelspieler@eressea.de"
|
f.email="doppelspieler@eressea.de"
|
||||||
f.password=""
|
f.password=""
|
||||||
|
f.info=v
|
||||||
else
|
else
|
||||||
print("- could not find faction " .. v)
|
print("- could not find faction " .. k)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue