diff options
author | PeterN <peter@fuzzle.org> | 2019-02-05 23:33:49 +0000 |
---|---|---|
committer | Michael Lutz <michi@icosahedron.de> | 2019-02-06 00:33:49 +0100 |
commit | 4764d1c45e7d82bc35f6fcb25012f5cfe545ce6c (patch) | |
tree | 07c91e610596ca89ab056a96671aecf63cd9e096 /src | |
parent | 9fc430a920ea5f42e56e459bec48e3ce8f13e3c0 (diff) | |
download | openttd-4764d1c45e7d82bc35f6fcb25012f5cfe545ce6c.tar.xz |
Doc #7181: AAT_STATION_AIRPLANE_LAND triggers only a single tile, not all airport tiles. (#7182)
Diffstat (limited to 'src')
-rw-r--r-- | src/newgrf_animation_type.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_animation_type.h b/src/newgrf_animation_type.h index 8eec6ada9..d014bf3cd 100644 --- a/src/newgrf_animation_type.h +++ b/src/newgrf_animation_type.h @@ -51,7 +51,7 @@ enum AirpAnimationTrigger { AAT_STATION_NEW_CARGO, ///< Triggered when new cargo arrives at the station (for all tiles at the same time). AAT_STATION_CARGO_TAKEN, ///< Triggered when a cargo type is completely removed from the station (for all tiles at the same time). AAT_STATION_250_TICKS, ///< Triggered every 250 ticks (for all tiles at the same time). - AAT_STATION_AIRPLANE_LAND, ///< Triggered when an airplane (not a helicopter) touches down at the airport (for all tiles at the same time). + AAT_STATION_AIRPLANE_LAND, ///< Triggered when an airplane (not a helicopter) touches down at the airport (for single tile). }; /** Animation triggers for objects. */ |