diff --git a/src/aircraft.h b/src/aircraft.h --- a/src/aircraft.h +++ b/src/aircraft.h @@ -85,6 +85,9 @@ struct Aircraft : public SpecializedVehi DirectionByte last_direction; byte number_consecutive_turns; + /** Ticks between each turn to prevent > 45 degree turns. */ + byte turn_counter; + /** We don't want GCC to zero our struct! It already is zeroed and has an index! */ Aircraft() : SpecializedVehicle() {} /** We want to 'destruct' the right class. */