Skip to content

Commit

Permalink
Removed "canBeBoosted" boolean from Hunter requirement as it is incor…
Browse files Browse the repository at this point in the history
…rect and cannot be boosted.
  • Loading branch information
Xtra-Crispy committed Oct 23, 2024
1 parent 8485023 commit 21479f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ public List<Requirement> getGeneralRecommended()
public List<Requirement> getGeneralRequirements()
{
ArrayList<Requirement> req = new ArrayList<>();
req.add(new SkillRequirement(Skill.HUNTER, 10, true));
req.add(new SkillRequirement(Skill.HUNTER, 10));
req.add(new SkillRequirement(Skill.AGILITY, 30));
req.add(new SkillRequirement(Skill.CRAFTING, 30));
req.add(new SkillRequirement(Skill.CONSTRUCTION, 34));
Expand Down

0 comments on commit 21479f4

Please sign in to comment.