Andrew Copland 2013-04-27 22:13:34 +01:00
parent c03a5ca3e9
commit e8cf7b8d78
1 changed files with 3 additions and 1 deletions

View File

@ -566,8 +566,10 @@ void SpaceStation::TimeStepUpdate(const float timeStep)
m_navLights->SetColor(i+1, NavLights::NAVLIGHT_GREEN);
continue;
}
if (dt.stage == 1) //reserved
if (dt.stage == 1) {//reserved
m_navLights->SetColor(i+1, NavLights::NAVLIGHT_YELLOW);
continue;
}
if (dt.ship->GetFlightState() == Ship::FLYING)
continue;
PositionDockedShip(dt.ship, i);