Skip to content

Commit

Permalink
fix imp meteor
Browse files Browse the repository at this point in the history
  • Loading branch information
malytomas committed Oct 12, 2023
1 parent 9239d81 commit f90c046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/generateMonsters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ Monster monsterImp(const Generate &generate)
it.skills.push_back(std::move(sk));
}

if (generate.level > max(LevelFire, max(LevelAoe, LevelDuration)))
if (generate.level > max(max(LevelFire, LevelDuration), max(LevelAoe, LevelGroundEffect)))
{
Skill sk = skillMeteor(generate);
sk.cost.clear();
Expand Down

0 comments on commit f90c046

Please sign in to comment.