Loading

Paste #pnqztwfas

  1. diff --git a/src/newgrf_animation_type.h b/src/newgrf_animation_type.h
  2. index 1f3995f46d..5ccc81d3a8 100644
  3. --- a/src/newgrf_animation_type.h
  4. +++ b/src/newgrf_animation_type.h
  5. @@ -46,11 +46,12 @@ enum IndustryAnimationTrigger {
  6.  
  7.  /** Animation triggers for airport tiles */
  8.  enum AirpAnimationTrigger {
  9. -   AAT_BUILT,               ///< Triggered when the airport is built (for all tiles at the same time).
  10. -   AAT_TILELOOP,            ///< Triggered in the periodic tile loop.
  11. -   AAT_STATION_NEW_CARGO,   ///< Triggered when new cargo arrives at the station (for all tiles at the same time).
  12. -   AAT_STATION_CARGO_TAKEN, ///< Triggered when a cargo type is completely removed from the station (for all tiles at the same time).
  13. -   AAT_STATION_250_TICKS,   ///< Triggered every 250 ticks (for all tiles at the same time).
  14. +   AAT_BUILT,                   ///< Triggered when the airport is built (for all tiles at the same time).
  15. +   AAT_TILELOOP,                ///< Triggered in the periodic tile loop.
  16. +   AAT_STATION_NEW_CARGO,       ///< Triggered when new cargo arrives at the station (for all tiles at the same time).
  17. +   AAT_STATION_CARGO_TAKEN,     ///< Triggered when a cargo type is completely removed from the station (for all tiles at the same time).
  18. +   AAT_STATION_250_TICKS,       ///< Triggered every 250 ticks (for all tiles at the same time).
  19. +   AAT_STATION_AIRPLANE_LAND,   ///< Triggered when an airplane (not a helicopter) touches down at the specific airport tile.
  20.  };
  21.  
  22.  /** Animation triggers for objects. */

Comments