Allow repeat species again since there's no chance of accidentally
rereading the file.
This commit is contained in:
parent
5a12540259
commit
ca2496f7d5
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ local function waitLoop(inputLine)
|
||||||
return util.promiseWrap(function()
|
return util.promiseWrap(function()
|
||||||
local ok, inputData = serpent.load(inputLine)
|
local ok, inputData = serpent.load(inputLine)
|
||||||
|
|
||||||
if not ok or inputData == nil or speciesId == inputData[1].id then
|
if not ok or inputData == nil then
|
||||||
io.stderr:write("Deserialization error\n")
|
io.stderr:write("Deserialization error\n")
|
||||||
io.stderr:write(inputLine.."\n")
|
io.stderr:write(inputLine.."\n")
|
||||||
return
|
return
|
||||||
|
|
Loading…
Add table
Reference in a new issue