(svn r21909) -Fix: some missing spaces

This commit is contained in:
rubidium
2011-01-26 08:14:36 +00:00
parent 2bec6123f7
commit 8017c2a3d7
7 changed files with 7 additions and 7 deletions

View File

@@ -2242,7 +2242,7 @@ void Vehicle::RemoveFromShared()
Order *Vehicle::GetNextManualOrder(int index) const
{
Order *order = this->GetOrder(index);
while(order != NULL && order->IsType(OT_AUTOMATIC)) {
while (order != NULL && order->IsType(OT_AUTOMATIC)) {
order = order->next;
}
return order;