From b08d8c7edbad00026d1121028f3d99f1a416b1f6 Mon Sep 17 00:00:00 2001 From: frosch Date: Sun, 3 Jan 2021 15:11:22 +0100 Subject: Cleanup 9f42358: Make also reliability_start randomised independent of introduction date. --- src/engine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/engine.cpp b/src/engine.cpp index 575995f86..72da8702f 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -665,12 +665,12 @@ void StartupOneEngine(Engine *e, Date aging_date) RestoreRandomSeeds(saved_seeds); - e->reliability_start = GB(r, 16, 14) + 0x7AE0; r = Random(); + e->reliability_start = GB(r, 16, 14) + 0x7AE0; e->reliability_max = GB(r, 0, 14) + 0xBFFF; - e->reliability_final = GB(r, 16, 14) + 0x3FFF; r = Random(); + e->reliability_final = GB(r, 16, 14) + 0x3FFF; e->duration_phase_1 = GB(r, 0, 5) + 7; e->duration_phase_2 = GB(r, 5, 4) + ei->base_life * 12 - 96; e->duration_phase_3 = GB(r, 9, 7) + 120; -- cgit v1.2.3-54-g00ecf