mirror of https://github.com/pret/pokeemerald.git
Updated Chain Fishing (markdown)
parent
63a9f4b7fa
commit
11fe152b56
|
@ -33,7 +33,7 @@ void FishingWildEncounter(u8 rod)
|
|||
species = GenerateFishingWildMon(gWildMonHeaders[GetCurrentMapWildMonHeaderId()].fishingMonsInfo, rod);
|
||||
}
|
||||
|
||||
+ if (species == sLastFishingSpecies && gChainFishingStreak < MAX_CHAIN_FISHING_STREAK)
|
||||
+ if (species == sLastFishingSpecies && gChainFishingStreak < 20)
|
||||
+ gChainFishingStreak++;
|
||||
+ else
|
||||
+ gChainFishingStreak = 0; //reeling in different species resets chain fish counter
|
||||
|
|
Loading…
Reference in New Issue