Fixed the furnace XP bug

This commit is contained in:
nossr50
2019-05-04 04:08:56 -07:00
parent cdf6e607de
commit 588b6f3692
4 changed files with 8 additions and 3 deletions

View File

@ -131,6 +131,6 @@ public class SmeltingManager extends SkillManager {
* @return the vanilla XP multiplier
*/
public int getVanillaXpMultiplier() {
return RankUtils.getRank(getPlayer(), SubSkillType.SMELTING_UNDERSTANDING_THE_ART);
return Math.max(1, RankUtils.getRank(getPlayer(), SubSkillType.SMELTING_UNDERSTANDING_THE_ART));
}
}