(svn r1770) -Fix: Hopefully last pieces of code that are containing a station-id

(and should be an uint16, not uint8)
This commit is contained in:
truelight
2005-02-02 16:16:43 +00:00
parent 944bba1031
commit ab3ed5c431
12 changed files with 38 additions and 28 deletions

View File

@@ -254,7 +254,7 @@ static void ProcessShipOrder(Vehicle *v)
const Station *st;
if (order->station == v->last_station_visited)
v->last_station_visited = 0xFFFF;
v->last_station_visited = INVALID_STATION;
st = GetStation(order->station);
if (st->dock_tile != 0) {
@@ -919,7 +919,7 @@ int32 CmdBuildShip(int x, int y, uint32 flags, uint32 p1, uint32 p2)
v->cargo_cap = svi->capacity;
v->value = value;
v->last_station_visited = 0xFFFF;
v->last_station_visited = INVALID_STATION;
v->max_speed = svi->max_speed;
v->engine_type = (byte)p1;