Fehlerbehandlung fehlende Befehlsdatei

This commit is contained in:
Enno Rehling 2005-04-24 21:54:57 +00:00
parent 649af5c16f
commit 4ed68348ba
1 changed files with 4 additions and 1 deletions

View File

@ -61,7 +61,10 @@ function process(orders)
init_summary()
-- run the turn:
read_orders(orders)
if read_orders(orders) ~= 0 then
print("could not read " .. orders)
return -1
end
run_scripts()
plan_monsters()