Changeset - r8858:2b55d841d847
[Not reviewed]
master
0 1 0
rubidium - 16 years ago 2008-04-07 21:02:27
rubidium@openttd.org
(svn r12620) -Fix: automatic servicing of vehicles made them stop in the depot.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/order_base.h
Show inline comments
 
@@ -178,7 +178,7 @@ public:
 
	/** Set whether we must stop at stations or not. */
 
	inline void SetNonStopType(OrderNonStopFlags non_stop_type) { SB(this->flags, 3, 1, !!non_stop_type); }
 
	/** Set the cause to go to the depot. */
 
	inline void SetDepotOrderType(OrderDepotTypeFlags depot_order_type) { this->flags = depot_order_type; }
 
	inline void SetDepotOrderType(OrderDepotTypeFlags depot_order_type) { this->flags = depot_order_type == ODTFB_SERVICE ? ODTF_MANUAL : depot_order_type; }
 
	/** Set what we are going to do in the depot. */
 
	inline void SetDepotActionType(OrderDepotActionFlags depot_service_type) { this->flags = depot_service_type; }
 

	
0 comments (0 inline, 0 general)