forked from github/server
de9264bc4c
- per-game folders to organize scripts a bit more
16 lines
375 B
Lua
16 lines
375 B
Lua
local function kill_multis()
|
|
local multis = {}
|
|
for k, v in multis do
|
|
local f = get_faction(atoi36(v))
|
|
if f~=nil then
|
|
print("- marking " .. tostring(f) .. " as a multi-player.")
|
|
f.email="doppelspieler@eressea.de"
|
|
f.password=""
|
|
else
|
|
print("- could not find faction " .. v)
|
|
end
|
|
end
|
|
end
|
|
|
|
print("killing multi-players")
|
|
kill_multis()
|