Fix BUGFIX return statement in battle_dome.c

This commit is contained in:
WhenGryphonsFly 2022-08-10 20:00:16 -05:00
parent cd5a03d4aa
commit 475658116e

View file

@ -2763,7 +2763,7 @@ static int GetTypeEffectivenessPoints(int move, int targetSpecies, int mode)
{ {
typePower = 8; typePower = 8;
#ifdef BUGFIX #ifdef BUGFIX
return; return typePower;
#endif #endif
} }
} }