From 8993f161b2bd8b34b99037837e404f0f7375e53d Mon Sep 17 00:00:00 2001 From: iron431 <34083081+iron431@users.noreply.github.com> Date: Sat, 28 Sep 2024 10:31:19 -0500 Subject: [PATCH] changelog --- LATEST_CHANGES.MD | 3 +++ .../java/io/redspace/ironsspellbooks/config/ServerConfigs.java | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LATEST_CHANGES.MD b/LATEST_CHANGES.MD index 158cb17f5..a74dc6139 100644 --- a/LATEST_CHANGES.MD +++ b/LATEST_CHANGES.MD @@ -1,6 +1,8 @@ ### Additions - Added new Advancement, A Fool's Foley - Anger a wizard by looting a nearby chest +- Added config for Hoglins to pass on Netherward Tincture's effect when bred (defaulted to true) +- Added Waterlogging to Inscription Table, Scroll Forge, Firefly Jar, Armor Pile, and Pedestal ### Changes - @@ -9,6 +11,7 @@ - Fixed advancements not being visible due to 1.21 format change - Fixed blood cauldron block crashbug due to missing default interaction - Fixed poison cancelling long casts +- Fixed Alchemist Cauldron and hopper interaction ### API - diff --git a/src/main/java/io/redspace/ironsspellbooks/config/ServerConfigs.java b/src/main/java/io/redspace/ironsspellbooks/config/ServerConfigs.java index bb3a4ab66..20ad95dda 100644 --- a/src/main/java/io/redspace/ironsspellbooks/config/ServerConfigs.java +++ b/src/main/java/io/redspace/ironsspellbooks/config/ServerConfigs.java @@ -27,7 +27,6 @@ public class ServerConfigs { public static final ModConfigSpec.ConfigValue CAN_ATTACK_OWN_SUMMONS; public static final ModConfigSpec.ConfigValue MAX_UPGRADES; public static final ModConfigSpec.ConfigValue MANA_SPAWN_PERCENT; - public static final ModConfigSpec.ConfigValue RUN_WORLD_UPGRADER; public static final ModConfigSpec.ConfigValue SCROLL_RECYCLE_CHANCE; private static final ModConfigSpec.ConfigValue> UPGRADE_WHITELIST; private static final ModConfigSpec.ConfigValue> UPGRADE_BLACKLIST; @@ -73,8 +72,6 @@ public class ServerConfigs { MAX_UPGRADES = BUILDER.worldRestart().define("maxUpgrades", 3); BUILDER.comment("From 0-1, the percent of max mana a player respawns with. Default: 0.0"); MANA_SPAWN_PERCENT = BUILDER.worldRestart().define("manaSpawnPercent", 0.0); - BUILDER.comment("If true the world will attempt to be upgraded from an older version of ISS"); - RUN_WORLD_UPGRADER = BUILDER.worldRestart().define("runWorldUpgrader", true); BUILDER.comment("From 0-1, the percent chance for scrolls to be successfully recycled. Default: 0.5 (50%)"); SCROLL_RECYCLE_CHANCE = BUILDER.worldRestart().define("scrollRecycleChance", 0.5); BUILDER.comment("Whether or not potions should be allowed to be brewed in the alchemist cauldron)");