diff options
author | frosch <frosch@openttd.org> | 2013-03-22 21:27:13 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2013-03-22 21:27:13 +0000 |
commit | 30f601d685196464cb86b32f2f3f2b13019f0735 (patch) | |
tree | c5a2834af593e935abc6c6426861a5f1b2edc66f /src/table | |
parent | 9eab26a1a1bdccb4da54f598e861f029aa72f41f (diff) | |
download | openttd-30f601d685196464cb86b32f2f3f2b13019f0735.tar.xz |
(svn r25115) -Fix (r8973) [FS#5492-ish]: [NewGRF] Acceleration of NewGRF aircraft was too fast, while acceleration of default aircraft was way too slow. I.e. choose wisely who to let write the software for your orbiter.
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/engines.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table/engines.h b/src/table/engines.h index 102d8d79c..b79733c7a 100644 --- a/src/table/engines.h +++ b/src/table/engines.h @@ -580,8 +580,8 @@ static const ShipVehicleInfo _orig_ship_vehicle_info[] = { * @param c running_Cost * @param d subtype (bit 0 - plane, bit 1 - large plane) * @param e sound effect - * @param f acceleration - * @param g max_speed (1 unit = 8 mph = 12.8 km-ish/h) + * @param f acceleration (1 unit = 3/8 mph/tick = 3/5 km-ish/h/tick) (stays the same in the variable) + * @param g max_speed (1 unit = 8 mph = 12.8 km-ish/h) (is converted to km-ish/h by the macro) * @param h mail_capacity (bags) * @param i passenger_capacity (persons) */ |