diff --git a/src/main/java/com/github/thedeathlycow/frostiful/config/group/CombatConfigGroup.java b/src/main/java/com/github/thedeathlycow/frostiful/config/group/CombatConfigGroup.java index 9e9fbac5..6b8d0b79 100644 --- a/src/main/java/com/github/thedeathlycow/frostiful/config/group/CombatConfigGroup.java +++ b/src/main/java/com/github/thedeathlycow/frostiful/config/group/CombatConfigGroup.java @@ -34,8 +34,6 @@ public class CombatConfigGroup implements ConfigData { float packedSnowballVulnerableTypesDamage = 5.0f; - float polarBearShearingDamage = 1.0f; - int frostologerPassiveFreezingPerTick = 2; float frostologerMaxPassiveFreezing = 0.5f; @@ -102,10 +100,6 @@ public float getPackedSnowballVulnerableTypesDamage() { return packedSnowballVulnerableTypesDamage; } - public float getPolarBearShearingDamage() { - return polarBearShearingDamage; - } - public int getFrostologerPassiveFreezingPerTick() { return frostologerPassiveFreezingPerTick; } diff --git a/src/main/java/com/github/thedeathlycow/frostiful/item/FSmithingTemplateItem.java b/src/main/java/com/github/thedeathlycow/frostiful/item/FSmithingTemplateItem.java index 991adbb3..79653be0 100644 --- a/src/main/java/com/github/thedeathlycow/frostiful/item/FSmithingTemplateItem.java +++ b/src/main/java/com/github/thedeathlycow/frostiful/item/FSmithingTemplateItem.java @@ -33,7 +33,7 @@ public static void addTemplatesToLoot() { addTemplateToLoot( FItems.ICE_SKATE_UPGRADE_TEMPLATE, new Identifier("chests/village/village_snowy_house"), - config.combatConfig.getFurUpgradeTemplateGenerateChance() + config.combatConfig.getSkateUpgradeTemplateGenerateChance() ); } diff --git a/src/main/resources/assets/frostiful/lang/en_us.json b/src/main/resources/assets/frostiful/lang/en_us.json index 73e4f39a..11c117a3 100644 --- a/src/main/resources/assets/frostiful/lang/en_us.json +++ b/src/main/resources/assets/frostiful/lang/en_us.json @@ -228,7 +228,6 @@ "text.autoconfig.frostiful.option.combatConfig.packedSnowballFreezeAmount": "Packed snowball freeze amount", "text.autoconfig.frostiful.option.combatConfig.packedSnowballDamage": "Packed snowball damage", "text.autoconfig.frostiful.option.combatConfig.packedSnowballVulnerableTypesDamage": "Packed snowball vulnerable types damage", - "text.autoconfig.frostiful.option.combatConfig.polarBearShearingDamage": "Polar bear shearing damage", "text.autoconfig.frostiful.option.combatConfig.frostologerPassiveFreezingPerTick": "Frostologer passive freezing per tick", "text.autoconfig.frostiful.option.combatConfig.frostologerMaxPassiveFreezing": "Frostologer max passive freezing percent (0-1)", "text.autoconfig.frostiful.option.combatConfig.biterFrostBiteMaxAmplifier": "Max Frost Bite Max Amplifier (inclusive)",