(svn r19945) -Fix (r19755-ish): Allow turning of roadvehicles while waiting in a queue (again).

This commit is contained in:
frosch 2010-06-07 20:38:16 +00:00
parent 7de069af3b
commit 6b88c1c5cd
1 changed files with 1 additions and 1 deletions

View File

@ -422,7 +422,7 @@ CommandCost CmdTurnRoadVeh(TileIndex tile, DoCommandFlag flags, uint32 p1, uint3
v->overtaking != 0 ||
v->state == RVSB_WORMHOLE ||
v->IsInDepot() ||
v->cur_speed < 5) {
v->current_order.IsType(OT_LOADING)) {
return CMD_ERROR;
}