(svn r14869) -Feature: Allow road vehicles to move multiple steps in a tick (code based on train movement code) and add support for RV prop 15. This gives RVs a maximum speed of 318mph instead 79mph. This only implements higher speeds, not 'realistic acceleration'.

This commit is contained in:
peter1138
2009-01-06 14:45:38 +00:00
parent 680175fea0
commit c0efc759ef
3 changed files with 59 additions and 27 deletions

View File

@@ -96,7 +96,7 @@ struct RoadVehicleInfo {
byte running_cost;
byte running_cost_class;
SoundFxByte sfx;
byte max_speed;
uint16 max_speed; ///< Maximum speed in mph/3.2 units
byte capacity;
CargoID cargo_type;
};