diff options
-rw-r--r-- | Chain-Fishing.md | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Chain-Fishing.md b/Chain-Fishing.md index a8126af..a640c08 100644 --- a/Chain-Fishing.md +++ b/Chain-Fishing.md @@ -33,10 +33,15 @@ void FishingWildEncounter(u8 rod) species = GenerateFishingWildMon(gWildMonHeaders[GetCurrentMapWildMonHeaderId()].fishingMonsInfo, rod); } -+ if (species == sLastFishingSpecies && gChainFishingStreak < 20) -+ gChainFishingStreak++; ++ if (species == sLastFishingSpecies) ++ { ++ if (gChainFishingStreak < 20) ++ gChainFishingStreak++; ++ } + else ++ { + gChainFishingStreak = 0; //reeling in different species resets chain fish counter ++ } + + sLastFishingSpecies = species; IncrementGameStat(GAME_STAT_FISHING_CAPTURES); |