diff options
author | peter1138 <peter1138@openttd.org> | 2006-12-28 13:18:07 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2006-12-28 13:18:07 +0000 |
commit | 8ca21a3cb03f3275061676b9d20a7ba18429064e (patch) | |
tree | 8b5dc4c32db6c462ecc95765f9e84dbdc2b09526 /table | |
parent | b78dd8742db08230fd0b61e55cbb47f50ba304ea (diff) | |
download | openttd-8ca21a3cb03f3275061676b9d20a7ba18429064e.tar.xz |
(svn r7592) -Feature: Add support for tractive effort to 'realistic' acceleration.
Diffstat (limited to 'table')
-rw-r--r-- | table/engines.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/table/engines.h b/table/engines.h index 40389082a..08c4cea00 100644 --- a/table/engines.h +++ b/table/engines.h @@ -341,8 +341,9 @@ const EngineInfo orig_engine_info[] = { * @param i capacity * @param j cargo_type * @param k ai_rank + * Tractive effort coefficient by default is the same as TTDPatch, 0.30*256=76 */ -#define RVI(a, b, c, d, e, f, g, h, i, j, k) { a, b, c, d, e, f, g, h, h, i, j, k, 0, 0, 0, 0, 0 } +#define RVI(a, b, c, d, e, f, g, h, i, j, k) { a, b, c, d, e, f, g, h, h, i, j, k, 0, 0, 0, 0, 76, 0 } #define M RVI_MULTIHEAD #define W RVI_WAGON #define S 0 |