Skip to content

Commit

Permalink
build(version): beta.3-fabric->beta.4-fabric
Browse files Browse the repository at this point in the history
  • Loading branch information
bconlon1 committed Nov 15, 2024
1 parent dd3884e commit c53a0b4
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/continue_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
24 changes: 24 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public ValkyrieLanceItem() {

@Override
public boolean canBeEnchantedWith(ItemStack stack, Holder<Enchantment> enchantment, EnchantingContext context) {
if (context == EnchantingContext.PRIMARY && enchantment.is(Enchantments.SWEEPING_EDGE)) {
if (context == EnchantingContext.PRIMARY && !enchantment.is(Enchantments.SWEEPING_EDGE)) {
return true;
}

Expand Down
2 changes: 1 addition & 1 deletion update.json
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit c53a0b4

Please sign in to comment.