(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 752155b6ee
commit 6d49982286

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[] = {