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. (#1823)
  • Loading branch information
Xtra-Crispy authored Nov 18, 2024
1 parent bcaedc8 commit d5c4432
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 d5c4432

Please sign in to comment.