roadveh_cmd.c
changeset 4412 945e8a9bb89a
parent 4389 e4555522d257
child 4434 4175805666a5
--- a/roadveh_cmd.c	Sun Aug 27 07:23:46 2006 +0000
+++ b/roadveh_cmd.c	Sun Aug 27 09:28:52 2006 +0000
@@ -357,7 +357,7 @@
 /** Send a road vehicle to the depot.
  * @param tile unused
  * @param p1 vehicle ID to send to the depot
- * @param p2 unused
+ * @param p2 if bit 0 is set, then the road vehicle will only service at the depot. 0 Makes it stop inside
  */
 int32 CmdSendRoadVehToDepot(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
 {
@@ -393,7 +393,8 @@
 	if (flags & DC_EXEC) {
 		ClearSlot(v);
 		v->current_order.type = OT_GOTO_DEPOT;
-		v->current_order.flags = OF_NON_STOP | OF_HALT_IN_DEPOT;
+		v->current_order.flags = OF_NON_STOP;
+		if (!HASBIT(p2,0)) SETBIT(v->current_order.flags, OFB_HALT_IN_DEPOT);
 		v->current_order.dest.depot = dep->index;
 		v->dest_tile = dep->xy;
 		InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, STATUS_BAR);