Fixed bugs relating to followers from previous commit, fixed error in Safari Battles from previous commit

This commit is contained in:
Maruno17
2021-12-11 01:44:44 +00:00
parent 2e3d479752
commit b9d69b780b
4 changed files with 10 additions and 10 deletions

View File

@@ -47,7 +47,7 @@ class Battle::FakeBattler
end
def opposes?(i)
i = i.index if i.is_a?(FakeBattler)
i = i.index if i.is_a?(Battle::FakeBattler)
return (@index&1)!=(i&1)
end