* Updated that the maximum power-up level of a Pokémon is the trainer level + 2. It was the trainer level + 1.5 before.

* Updated to remember the last selected player level.  Player level rarely changes when calculating a bunch of Pokémons.
This commit is contained in:
2017-11-30 17:33:13 +08:00
parent 2c5c0909e0
commit de7dbdd676
4 changed files with 20 additions and 10 deletions

View File

@ -100,7 +100,7 @@ Sub subCreateReport ( _
End If
If aQuery.nPlayerLevel <> 0 Then
fMaxLevel = aQuery.nPlayerLevel + 1.5
fMaxLevel = aQuery.nPlayerLevel + 2
If fMaxLevel > 40 Then
fMaxLevel = 40
End If