* Makes this order an conditional order. * @param order the order to jump to. */
| 124 | * @param order the order to jump to. |
| 125 | */ |
| 126 | void Order::MakeConditional(VehicleOrderID order) |
| 127 | { |
| 128 | this->type = OT_CONDITIONAL; |
| 129 | this->flags = order; |
| 130 | this->dest = 0; |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * Makes this order an implicit order. |
no outgoing calls
no test coverage detected