瀏覽代碼

Fixing some mistakes in default values for Repair

nossr50 6 年之前
父節點
當前提交
bbd43e156a
共有 1 個文件被更改,包括 5 次插入2 次删除
  1. 5 2
      src/main/java/com/gmail/nossr50/config/hocon/experience/ConfigExperienceRepair.java

+ 5 - 2
src/main/java/com/gmail/nossr50/config/hocon/experience/ConfigExperienceRepair.java

@@ -25,6 +25,9 @@ public class ConfigExperienceRepair {
         ITEM_MATERIAL_XP_MULTIPLIER_DEFAULT.put(ItemMaterialCategory.OTHER.toString(), 1.5D);
     }
 
+    @Setting(value = "Item-Material-Category-XP-Multiplier", comment = "The material of your item is determined by mcMMO and used to influence XP, " +
+            "if your Item doesn't fit into a known category it will use OTHER." +
+            "\nFor the most part, items belong to categories of materials that they are made out of.")
     private HashMap<String, Double> itemMaterialXPMultiplier = ITEM_MATERIAL_XP_MULTIPLIER_DEFAULT;
 
     @Setting(value = "Repair-XP-Base", comment = "The base amount of XP for repairing an item." +
@@ -40,7 +43,7 @@ public class ConfigExperienceRepair {
         return itemMaterialXPMultiplier;
     }
 
-    public static double getRepairXpBaseDefault() {
-        return REPAIR_XP_BASE_DEFAULT;
+    public double getRepairXPBase() {
+        return repairXPBase;
     }
 }