Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
iron431 committed Sep 28, 2024
1 parent c5accf9 commit 8993f16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 3 additions & 0 deletions LATEST_CHANGES.MD
Original file line number Diff line number Diff line change
@@ -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
-
Expand All @@ -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
-

Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public class ServerConfigs {
public static final ModConfigSpec.ConfigValue<Boolean> CAN_ATTACK_OWN_SUMMONS;
public static final ModConfigSpec.ConfigValue<Integer> MAX_UPGRADES;
public static final ModConfigSpec.ConfigValue<Double> MANA_SPAWN_PERCENT;
public static final ModConfigSpec.ConfigValue<Boolean> RUN_WORLD_UPGRADER;
public static final ModConfigSpec.ConfigValue<Double> SCROLL_RECYCLE_CHANCE;
private static final ModConfigSpec.ConfigValue<List<? extends String>> UPGRADE_WHITELIST;
private static final ModConfigSpec.ConfigValue<List<? extends String>> UPGRADE_BLACKLIST;
Expand Down Expand Up @@ -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)");
Expand Down

0 comments on commit 8993f16

Please sign in to comment.