(svn r1005) Don't treat orders in the normal load routine as old orders, this lead to corruption on load.

This commit is contained in:
tron 2004-12-10 13:10:17 +00:00
parent ea8311301e
commit bd1d21911d
1 changed files with 1 additions and 1 deletions

View File

@ -1920,7 +1920,7 @@ static void Load_ORDR()
SlArray(orders, len, SLE_UINT16);
for (i = 0; i < len; ++i)
_order_array[i] = UnpackOldOrder(orders[i]);
_order_array[i] = UnpackOrder(orders[i]);
}
const ChunkHandler _veh_chunk_handlers[] = {