diff --git a/CHANGES.md b/CHANGES.md
index 86f927333543b2dfff5089077c0eacde5ec64342..eeacd373b08a5c6b0895f0926cf970ecb18cad4c 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -8,6 +8,8 @@
 * Various bugfixes in AT model
 * rdyn validation
 * Fixed bug in map interpolation
+* Added ..\Developer Guide\Segment Table Description.xlsx
+* Fixed bug that caused engine power > full load
 
 ### VECTO 2.0.4-beta
 * AT update for 1C2C gearboxes
diff --git a/VECTO/MODcalc/cPower.vb b/VECTO/MODcalc/cPower.vb
index 4e80f0fcf34934cb7fc8bce39f69d628dd1e6406..963c0d5ab9ac488dbac313b8a2643fd77e0119b7 100644
--- a/VECTO/MODcalc/cPower.vb
+++ b/VECTO/MODcalc/cPower.vb
@@ -1112,7 +1112,7 @@ lb_nOK:
             If VECTOworker.CancellationPending Then Return True
 
             'Check whether P above Full-load => Reduce Speed
-            If Pplus And P > Pmax Then
+            If P > Pmax Then
                 If EngState0 = tEngState.Load Or EngState0 = tEngState.FullLoad Then
                     If Vact > 0.01 Then
                         Vh.ReduceSpeed(jz, 0.9999)