consistent naming of new players file across scripts and autoseed

This commit is contained in:
Enno Rehling 2015-05-10 13:56:24 -07:00
parent dc0897b122
commit 82d020701f
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ p = require("populate")
local function read_players()
-- return {{ email = "noreply@mailinator.com", race = "dwarf", lang = "de" }}
local players = {}
local input = open("players.txt", "r")
local input = open("newfactions", "r")
while input do
local str = input:read("*line")
if str==nil then break end