Merge pull request #111 from Rijackson/master

Add scythe to axe proficiency skill and whip to blunt proficiency ski…
This commit is contained in:
Zukero
2019-03-09 19:37:14 +01:00
committed by GitHub

View File

@@ -284,10 +284,10 @@ public final class SkillController {
return SkillID.weaponProficiency1hsword;
else if (itemCategoryID.equals("2hsword"))
return SkillID.weaponProficiency2hsword;
else if (itemCategoryID.equals("axe") || itemCategoryID.equals("axe2h"))
else if (itemCategoryID.equals("axe") || itemCategoryID.equals("axe2h") || itemCategoryID.equals("scythe"))
return SkillID.weaponProficiencyAxe;
else if (itemCategoryID.equals("club") || itemCategoryID.equals("staff") || itemCategoryID.equals("mace")
|| itemCategoryID.equals("scepter") || itemCategoryID.equals("hammer") || itemCategoryID.equals("hammer2h"))
|| itemCategoryID.equals("scepter") || itemCategoryID.equals("hammer") || itemCategoryID.equals("hammer2h") || itemCategoryID.equals("whip"))
return SkillID.weaponProficiencyBlunt;
} else if (category.isShield()) {
return SkillID.armorProficiencyShield;