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
commit e814fe0224
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
} }
} }