Ensure that the menu button reset to index 0 after mega evolve.

This commit is contained in:
jianmingyong 2016-10-09 03:16:17 +08:00
parent 36010dfa46
commit 7cce88e66f
1 changed files with 6 additions and 2 deletions

View File

@ -622,13 +622,17 @@
End Sub
Private Sub MainMenuAddMegaEvolution(ByVal BattleScreen As BattleScreen, ByVal Index As Integer)
If _mainMenuIndex >= 3 Then
_mainMenuIndex = 0
End If
For i = 0 To Core.Player.Pokemons.Count - 1
Dim _str As String = Core.Player.Pokemons(i).AdditionalData
Dim _str As String = Core.Player.Pokemons(i).AdditionalData
Select Case _str
Case "mega", "mega_x", "mega_y"
Exit Sub
Case Else
'do nothing
'do nothing
End Select
Next
Dim PokeIndex As Integer = BattleScreen.OwnPokemonIndex