station_cmd.c
changeset 1592 44d15b4c0bde
parent 1551 b1c7df6daa63
child 1593 138656ee7b9a
--- a/station_cmd.c	Mon Mar 28 07:25:36 2005 +0000
+++ b/station_cmd.c	Mon Mar 28 08:12:21 2005 +0000
@@ -2439,7 +2439,12 @@
 					Vehicle *v = GetVehicle(rs->slot[k]);
 
 					if (v->u.road.slot != rs) {
-						DEBUG(ms, 0) ("Multistop: Bus Slot Desync! cleaning up (Don't panic)");
+						DEBUG(ms, 1) ("Multistop: Truck Slot Desync between stop at "\
+							"0x%x of station %d (at 0x%x) and Vehicle %d at 0x%x, "\
+							"going to 0x%x! "\
+							"cleaning up (Don't panic)", \
+							rs->xy, st->index, st->xy, v->unitnumber, v->tile, \
+							v->dest_tile);
 						v->u.road.slot = NULL;
 						v->u.road.slot_age = 0;
 						rs->slot[k] = INVALID_SLOT;
@@ -2455,7 +2460,12 @@
 					Vehicle *v = GetVehicle(rs->slot[k]);
 
 					if (v->u.road.slot != rs) {
-						DEBUG(ms, 0) ("Multistop: Truck Slot Desync! cleaning up (Don't panic)");
+						DEBUG(ms, 1) ("Multistop: Truck Slot Desync between stop at "\
+							"0x%x of station %d (at 0x%x) and Vehicle %d at 0x%x, "\
+							"going to 0x%x! "\
+							"cleaning up (Don't panic)", \
+							rs->xy, st->index, st->xy, v->unitnumber, v->tile, \
+							v->dest_tile);
 						v->u.road.slot = NULL;
 						v->u.road.slot_age = 0;
 						rs->slot[k] = INVALID_SLOT;