Fixed some Vs animations not playing for double battles against 1 trainer, fixed typo in Grassy Glide's effect

This commit is contained in:
Maruno17
2022-07-08 13:44:04 +01:00
parent 3314477f08
commit 8ae07a6d15
2 changed files with 4 additions and 4 deletions

View File

@@ -649,7 +649,7 @@ end
class Battle::Move::HigherPriorityInGrassyTerrain < Battle::Move
def pbPriority(user)
ret = super
ret += 1 if @battle.field.terrain == :Grass && user.affectedByTerrain?
ret += 1 if @battle.field.terrain == :Grassy && user.affectedByTerrain?
return ret
end
end