dexnav fix shiny rate
This commit is contained in:
parent
ad514cf3fd
commit
6420e2c85b
1 changed files with 2 additions and 2 deletions
|
@ -2697,12 +2697,12 @@ bool8 DexNavTryMakeShinyMon(void)
|
|||
shinyRate += searchLevel - 200;
|
||||
searchLevel = 200;
|
||||
}
|
||||
else if (searchLevel > 100)
|
||||
if (searchLevel > 100)
|
||||
{
|
||||
shinyRate += (searchLevel * 2) - 200;
|
||||
searchLevel = 100;
|
||||
}
|
||||
else if (searchLevel > 0)
|
||||
if (searchLevel > 0)
|
||||
{
|
||||
shinyRate += searchLevel * 6;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue