Skip to content

Commit

Permalink
ran the code formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
marmadukeG committed Sep 25, 2023
1 parent 772e8d3 commit 3304d49
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,15 @@ public boolean checkRange(Skill skill, int requiredLevel, Client client, QuestHe
{
highestBoost = 5;
}
else if (skill == THIEVING){ //player only has access to Summer sq'irk juice at level 65 thieving which is the default boost value for thieving, currently that's blind to player current skill level
if(client.getRealSkillLevel(skill) < 65){
else if (skill == THIEVING)
{
//player only has access to Summer sq'irk juice at level 65 thieving which is the default boost value for thieving, currently that's blind to player current skill level
if (client.getRealSkillLevel(skill) < 65)
{
highestBoost = 2; //autumn sq'irk
}
else if(client.getRealSkillLevel(skill) < 45){
else if (client.getRealSkillLevel(skill) < 45)
{
highestBoost = 1; //spring sq'irk
}
}
Expand Down

0 comments on commit 3304d49

Please sign in to comment.