Hopefully fix egg hp > maxhp

This commit is contained in:
JappaWakka 2023-01-23 11:15:30 +01:00
parent 4c165742b9
commit 2b0531ed8a
1 changed files with 4 additions and 0 deletions

View File

@ -377,6 +377,10 @@
p.IsShiny = False
End If
If p.HP > p.MaxHP Then
p.HP = p.MaxHP
End If
Return p
End If