2
0
Эх сурвалжийг харах

Fixed bug with Salvage and ability tools

Fixes #2311
TfT_02 10 жил өмнө
parent
commit
4844be80da

+ 1 - 1
src/main/java/com/gmail/nossr50/config/experience/ExperienceConfig.java

@@ -179,7 +179,7 @@ public class ExperienceConfig extends AutoUpdateConfigLoader {
     /* Custom XP perk */
     public double getCustomXpPerkBoost() { return config.getDouble("Experience_Formula.Custom_XP_Perk.Boost", 1.25); }
 
-    /* Deminished Returns */
+    /* Diminished Returns */
     public boolean getDiminishedReturnsEnabled() { return config.getBoolean("Diminished_Returns.Enabled", false); }
     public int getDiminishedReturnsThreshold(SkillType skill) { return config.getInt("Diminished_Returns.Threshold." + StringUtils.getCapitalized(skill.toString()), 20000); }
     public int getDiminishedReturnsTimeInterval() { return config.getInt("Diminished_Returns.Time_Interval", 10); }

+ 1 - 0
src/main/java/com/gmail/nossr50/listeners/PlayerListener.java

@@ -467,6 +467,7 @@ public class PlayerListener implements Listener {
 
                         // Make sure the player knows what he's doing when trying to salvage an enchanted item
                         if (!(heldItem.getEnchantments().size() > 0) || salvageManager.checkConfirmation(true)) {
+                            SkillUtils.handleAbilitySpeedDecrease(player);
                             salvageManager.handleSalvage(block.getLocation(), heldItem);
                             player.updateInventory();
                         }