Gave "beast" text color white.

This commit is contained in:
FantaX1911 2019-01-25 19:05:01 +02:00
parent 1f3fc83b8a
commit d419794c3c

View File

@ -845,22 +845,22 @@ Public Class PartyScreen
Private Sub CheckForBeastEmblem() Private Sub CheckForBeastEmblem()
'This sub checks if Entei, Raikou and Suicune are in the player's party. 'This sub checks if Entei, Raikou and Suicune are in the player's party.
Dim hasEntei As Boolean = False
Dim hasRaikou As Boolean = False Dim hasRaikou As Boolean = False
Dim hasSuicune As Boolean = False Dim hasEntei As Boolean = False
Dim hasSuicune2 As Boolean = False
For Each p As Pokemon In PokemonList For Each p As Pokemon In PokemonList
Select Case p.Number Select Case p.Number
Case 244
hasEntei = True
Case 243 Case 243
hasRaikou = True hasRaikou = True
Case 244
hasEntei = True
Case 245 Case 245
hasSuicune = True hasSuicune2 = True
End Select End Select
Next Next
If hasEntei And hasRaikou And hasSuicune Then If hasRaikou And hasEntei And hasSuicune2 Then
GameJolt.Emblem.AchieveEmblem("beast") GameJolt.Emblem.AchieveEmblem("beast")
End If End If
End Sub End Sub