Merge pull request #1734 from WhenGryphonsFly/clean__battledomebugfix

Fix BUGFIX return statement in battle_dome.c
This commit is contained in:
GriffinR
2022-08-10 21:21:54 -04:00
committed by GitHub

View File

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