diff --git a/.circleci/continue_config.yml b/.circleci/continue_config.yml index 6a8a32ba2..f3cfd9890 100644 --- a/.circleci/continue_config.yml +++ b/.circleci/continue_config.yml @@ -6,7 +6,7 @@ orbs: parameters: artifact-name: type: string - default: aether-1.21.1-1.5.1-beta.3-fabric.jar + default: aether-1.21.1-1.5.1-beta.4-fabric.jar deploy-branch: type: string default: 1.21.1-develop-fabric diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c38e73c5b..59ec46408 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,27 @@ +# The Aether - Fabric - 1.21.1-1.5.1-beta.4 + +Fixes + +- Fix eternal day not functioning correctly. +- Fix Silver Dungeons sometimes not generating with aerclouds. +- Fix an incorrect tooltip for Gravitite Armor. +- Fix first-person Shield of Repulsion rendering for players without slim arms. +- Fix projectiles getting stuck on top of the Slider. +- Fix glove modifiers being hardcoded to a specific slot. +- Fix cape textures not being correctly separated per-player. +- Fix Moa Skins not registering on the client. +- Fix effect overlay vignettes not rendering. +- Fix bosses using regular-styled boss bars. +- Fix entities not getting placed in structures. +- Fix a crash from incorrect class casting. +- Fix incorrect enchantment selections for Valkyrie Lance and Dart Shooters. +- Fix Valkyrie Lance having sweeping. +- Fix a crash with Tips by temporarily disabling some compatibility. + # The Aether - Fabric - 1.21.1-1.5.1-beta.3 +Fixes + - Fix a null crash from the helper for moving accessories from Curios to the new system. - Fix a null crash from Moa Skin loading. - Fix Zephyr Snowballs having incorrect shooting trajectory. @@ -19,6 +41,8 @@ # The Aether - Fabric - 1.21.1-1.5.1-beta.2 +Fixes + - Fix inability to drop items leading them to be deleted - Fix inability to choose aether specific Datapacks - Fix issues where Ice Accessories did not freeze liquids diff --git a/gradle.properties b/gradle.properties index 536f230ea..7fb0a2706 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ neogradle.subsystems.parchment.mappingsVersion=2024.07.28 mod_id=aether mod_group=com.aetherteam.aether mod_name=The Aether -mod_version=1.5.1-beta.3 +mod_version=1.5.1-beta.4 mod_license=Assets: All Rights Reserved; Code: LGPL-3.0 mod_url=https://modrinth.com/mod/aether mod_update=https://github.com/The-Aether-Team/The-Aether/raw/1.21.1-develop-fabric/update.json diff --git a/src/main/java/com/aetherteam/aether/item/combat/loot/ValkyrieLanceItem.java b/src/main/java/com/aetherteam/aether/item/combat/loot/ValkyrieLanceItem.java index ed88045cb..8d9d76d85 100644 --- a/src/main/java/com/aetherteam/aether/item/combat/loot/ValkyrieLanceItem.java +++ b/src/main/java/com/aetherteam/aether/item/combat/loot/ValkyrieLanceItem.java @@ -24,7 +24,7 @@ public ValkyrieLanceItem() { @Override public boolean canBeEnchantedWith(ItemStack stack, Holder enchantment, EnchantingContext context) { - if (context == EnchantingContext.PRIMARY && enchantment.is(Enchantments.SWEEPING_EDGE)) { + if (context == EnchantingContext.PRIMARY && !enchantment.is(Enchantments.SWEEPING_EDGE)) { return true; } diff --git a/update.json b/update.json index ac6e5e889..4bdfd3d91 100644 --- a/update.json +++ b/update.json @@ -1,6 +1,6 @@ { "homepage": "https://modrinth.com/mod/aether", "promos": { - "1.21.1-recommended": "1.21.1-1.5.1-beta.3-fabric" + "1.21.1-recommended": "1.5.1-beta.4" } }