Fix P_FRIENDSHIP_EVO_THRESHOLD not checking for Gen 8 (#5503)

This commit is contained in:
kittenchilly 2024-10-10 14:26:46 -05:00 committed by GitHub
parent 8d2d62273b
commit 8890500b77
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -60,7 +60,7 @@
#include "constants/weather.h"
#include "wild_encounter.h"
#define FRIENDSHIP_EVO_THRESHOLD ((P_FRIENDSHIP_EVO_THRESHOLD >= GEN_9) ? 160 : 220)
#define FRIENDSHIP_EVO_THRESHOLD ((P_FRIENDSHIP_EVO_THRESHOLD >= GEN_8) ? 160 : 220)
struct SpeciesItem
{