Corrected egg hatch message

This commit is contained in:
JappaWakka 2022-09-29 20:34:18 +02:00
parent d2860b15a8
commit d2d4736039
2 changed files with 2 additions and 1 deletions

View File

@ -1807,6 +1807,7 @@
Pokemons.Remove(p)
Next
Screen.TextBox.Show("Huh?")
SetScreen(New TransitionScreen(CurrentScreen, New HatchEggScreen(CurrentScreen, eggsReady), Color.White, False))
_stepEventEggHatched = True

View File

@ -866,7 +866,7 @@
Core.Player.Pokemons.Remove(Pokemon)
End If
If Pokemon.IsEgg() = True Then
Screen.TextBox.Show("?")
Screen.TextBox.Show("Huh?")
SetScreen(New TransitionScreen(CType(CurrentScreen, OverworldScreen), New HatchEggScreen(CType(CurrentScreen, OverworldScreen), {Pokemon}.ToList, CanRename, Message), Color.White, False))
CanContinue = False
End If