Fixing some mistakes in default values for Repair

This commit is contained in:
nossr50 2019-04-15 20:14:29 -07:00
parent a9cb28a8f2
commit bbd43e156a

View File

@ -25,6 +25,9 @@ public class ConfigExperienceRepair {
ITEM_MATERIAL_XP_MULTIPLIER_DEFAULT.put(ItemMaterialCategory.OTHER.toString(), 1.5D); 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; 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." + @Setting(value = "Repair-XP-Base", comment = "The base amount of XP for repairing an item." +
@ -40,7 +43,7 @@ public class ConfigExperienceRepair {
return itemMaterialXPMultiplier; return itemMaterialXPMultiplier;
} }
public static double getRepairXpBaseDefault() { public double getRepairXPBase() {
return REPAIR_XP_BASE_DEFAULT; return repairXPBase;
} }
} }