diff -r 4d19bcd78d22 -r 31e203063e43 console_cmds.c --- a/console_cmds.c Fri Mar 17 23:47:03 2006 +0000 +++ b/console_cmds.c Sat Mar 18 08:00:27 2006 +0000 @@ -109,7 +109,8 @@ } FOR_ALL_ROADSTOPS(rs) { - rs->slot[0] = rs->slot[1] = INVALID_VEHICLE; + int i; + for (i = 0; i < NUM_SLOTS; i++) rs->slot[i] = INVALID_VEHICLE; } return true;