forked from github/server
Bugs, bugs, bugs...
This commit is contained in:
parent
82af7525e6
commit
4b58871100
|
@ -1,13 +1,17 @@
|
||||||
local function kill_multis()
|
local function kill_multis()
|
||||||
local multis = [ "ogq", "idan", "e8L1" ]
|
local multis = { "ogq", "idan", "e8L1" }
|
||||||
for key in multis do
|
for k, v in multis do
|
||||||
local f = get_faction(atoi36(multis[key]))
|
print(v)
|
||||||
|
local f = get_faction(atoi36(v))
|
||||||
if f~=nil then
|
if f~=nil then
|
||||||
|
print("Marking " .. tostring(f) .. " as a multi-player.")
|
||||||
f.email="doppelspieler@eressea.de"
|
f.email="doppelspieler@eressea.de"
|
||||||
f.password=""
|
f.password=""
|
||||||
print "Marking " .. f .. " as a multi-player."
|
else
|
||||||
|
print("- could not find faction " .. v)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
print("killing multi-players")
|
||||||
kill_multis()
|
kill_multis()
|
||||||
|
|
Loading…
Reference in New Issue