summaryrefslogtreecommitdiff
path: root/src/aircraft.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/aircraft.h')
-rw-r--r--src/aircraft.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/aircraft.h b/src/aircraft.h
index 983d3e0e9..7ad8c92ea 100644
--- a/src/aircraft.h
+++ b/src/aircraft.h
@@ -85,6 +85,9 @@ struct Aircraft : public SpecializedVehicle<Aircraft, VEH_AIRCRAFT> {
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<Aircraft, VEH_AIRCRAFT>() {}
/** We want to 'destruct' the right class. */