Fix for non-HM field moves not visible in menu
This commit is contained in:
parent
15b974fe3f
commit
7dedbb7ec2
|
@ -683,13 +683,12 @@ Public Class PartyScreen
|
|||
If Badge.CanUseHMMove(CType(hmMove, Badge.HMMoves)) = False Then
|
||||
Return False
|
||||
End If
|
||||
|
||||
For Each a As BattleSystem.Attack In p.Attacks
|
||||
If a.Name.ToLower() = moveName.ToLower() Then
|
||||
Return True
|
||||
End If
|
||||
Next
|
||||
End If
|
||||
For Each a As BattleSystem.Attack In p.Attacks
|
||||
If a.Name.ToLower() = moveName.ToLower() Then
|
||||
Return True
|
||||
End If
|
||||
Next
|
||||
End If
|
||||
Return False
|
||||
End Function
|
||||
|
|
Loading…
Reference in New Issue