Fix P_FRIENDSHIP_EVO_THRESHOLD not checking for Gen 8 (#5503)
This commit is contained in:
parent
8d2d62273b
commit
8890500b77
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@
|
||||||
#include "constants/weather.h"
|
#include "constants/weather.h"
|
||||||
#include "wild_encounter.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
|
struct SpeciesItem
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue