Skip to content

Commit

Permalink
Removed unknown condition for onlyFullyEvolved
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMrDew committed Jun 9, 2024
1 parent 9adaba0 commit 5384466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pokedex/Pokedex/Controllers/AjaxController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3492,7 +3492,7 @@ private List<Pokemon> FilterEvolutions(List<Pokemon> pokemonList, List<string> e
}
}

if (evolutionList.Contains("onlyFullyEvolved") || (game.Id != 16 && game.Id != 20 && evolutionList.Contains("noEvolutionLine")))
if (evolutionList.Contains("onlyFullyEvolved"))
{
foreach (var p in pokemonList)
{
Expand Down

0 comments on commit 5384466

Please sign in to comment.