diff options
Diffstat (limited to 'src/engine.cpp')
-rw-r--r-- | src/engine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine.cpp b/src/engine.cpp index 02c3fc8e4..5e873f5a1 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -692,7 +692,7 @@ void EnginesMonthlyLoop() Engine *e; FOR_ALL_ENGINES(e) { /* Age the vehicle */ - if (e->flags & ENGINE_AVAILABLE && e->age != 0xFFFF) { + if ((e->flags & ENGINE_AVAILABLE) && e->age != 0xFFFF) { e->age++; CalcEngineReliability(e); } |