Fix typos
This commit is contained in:
@@ -2861,8 +2861,8 @@ void CalculateMonStats(struct Pokemon *mon)
|
||||
if (currentHP == 0 && oldMaxHP == 0)
|
||||
currentHP = newMaxHP;
|
||||
else if (currentHP != 0)
|
||||
//BUG: currentHP is unintentionally able to become <= 0 after the instruction below. This causes the pomeg berry glitch.
|
||||
//To fix this add another if statement after the instruction that sets currentHP = 1 if currentHP <= 0.
|
||||
// BUG: currentHP is unintentionally able to become <= 0 after the instruction below. This causes the pomeg berry glitch.
|
||||
// To fix that set currentHP = 1 if currentHP <= 0.
|
||||
currentHP += newMaxHP - oldMaxHP;
|
||||
else
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user