Changeset - r18038:284e992f5af2
[Not reviewed]
master
0 1 0
yexo - 13 years ago 2011-09-01 10:04:12
yexo@openttd.org
(svn r22863) -Fix (r22861): AIOrder::SetOrderCondition didn't accept the new condition
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/ai/api/ai_order.cpp
Show inline comments
 
@@ -336,7 +336,7 @@ static const Order *ResolveOrder(Vehicle
 
{
 
	EnforcePrecondition(false, IsValidVehicleOrder(vehicle_id, order_position));
 
	EnforcePrecondition(false, order_position != ORDER_CURRENT && IsConditionalOrder(vehicle_id, order_position));
 
	EnforcePrecondition(false, condition >= OC_LOAD_PERCENTAGE && condition <= OC_UNCONDITIONALLY);
 
	EnforcePrecondition(false, condition >= OC_LOAD_PERCENTAGE && condition <= OC_REMAINING_LIFETIME);
 

	
 
	return AIObject::DoCommand(0, vehicle_id | (order_position << 20), MOF_COND_VARIABLE | (condition << 4), CMD_MODIFY_ORDER);
 
}
0 comments (0 inline, 0 general)