Skip to content

Commit c53a0b4

Browse files
committed
build(version): beta.3-fabric->beta.4-fabric
1 parent dd3884e commit c53a0b4

File tree

5 files changed

+28
-4
lines changed

5 files changed

+28
-4
lines changed

.circleci/continue_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ orbs:
66
parameters:
77
artifact-name:
88
type: string
9-
default: aether-1.21.1-1.5.1-beta.3-fabric.jar
9+
default: aether-1.21.1-1.5.1-beta.4-fabric.jar
1010
deploy-branch:
1111
type: string
1212
default: 1.21.1-develop-fabric

docs/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
1+
# The Aether - Fabric - 1.21.1-1.5.1-beta.4
2+
3+
Fixes
4+
5+
- Fix eternal day not functioning correctly.
6+
- Fix Silver Dungeons sometimes not generating with aerclouds.
7+
- Fix an incorrect tooltip for Gravitite Armor.
8+
- Fix first-person Shield of Repulsion rendering for players without slim arms.
9+
- Fix projectiles getting stuck on top of the Slider.
10+
- Fix glove modifiers being hardcoded to a specific slot.
11+
- Fix cape textures not being correctly separated per-player.
12+
- Fix Moa Skins not registering on the client.
13+
- Fix effect overlay vignettes not rendering.
14+
- Fix bosses using regular-styled boss bars.
15+
- Fix entities not getting placed in structures.
16+
- Fix a crash from incorrect class casting.
17+
- Fix incorrect enchantment selections for Valkyrie Lance and Dart Shooters.
18+
- Fix Valkyrie Lance having sweeping.
19+
- Fix a crash with Tips by temporarily disabling some compatibility.
20+
121
# The Aether - Fabric - 1.21.1-1.5.1-beta.3
222

23+
Fixes
24+
325
- Fix a null crash from the helper for moving accessories from Curios to the new system.
426
- Fix a null crash from Moa Skin loading.
527
- Fix Zephyr Snowballs having incorrect shooting trajectory.
@@ -19,6 +41,8 @@
1941

2042
# The Aether - Fabric - 1.21.1-1.5.1-beta.2
2143

44+
Fixes
45+
2246
- Fix inability to drop items leading them to be deleted
2347
- Fix inability to choose aether specific Datapacks
2448
- Fix issues where Ice Accessories did not freeze liquids

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ neogradle.subsystems.parchment.mappingsVersion=2024.07.28
99
mod_id=aether
1010
mod_group=com.aetherteam.aether
1111
mod_name=The Aether
12-
mod_version=1.5.1-beta.3
12+
mod_version=1.5.1-beta.4
1313
mod_license=Assets: All Rights Reserved; Code: LGPL-3.0
1414
mod_url=https://modrinth.com/mod/aether
1515
mod_update=https://github.com/The-Aether-Team/The-Aether/raw/1.21.1-develop-fabric/update.json

src/main/java/com/aetherteam/aether/item/combat/loot/ValkyrieLanceItem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public ValkyrieLanceItem() {
2424

2525
@Override
2626
public boolean canBeEnchantedWith(ItemStack stack, Holder<Enchantment> enchantment, EnchantingContext context) {
27-
if (context == EnchantingContext.PRIMARY && enchantment.is(Enchantments.SWEEPING_EDGE)) {
27+
if (context == EnchantingContext.PRIMARY && !enchantment.is(Enchantments.SWEEPING_EDGE)) {
2828
return true;
2929
}
3030

update.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"homepage": "https://modrinth.com/mod/aether",
33
"promos": {
4-
"1.21.1-recommended": "1.21.1-1.5.1-beta.3-fabric"
4+
"1.21.1-recommended": "1.5.1-beta.4"
55
}
66
}

0 commit comments

Comments
 (0)