Skip to content

Commit

Permalink
1.21.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rfresh2 committed Oct 23, 2024
1 parent 7b7bc3a commit 334e88c
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
push:
branches:
- "1.21.2"
- "1.21.3"

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: 1.21.2 PreRelease Build and Release
name: 1.21.3 PreRelease Build and Release

on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+\+1.21.2.pre'
- '[0-9]+.[0-9]+.[0-9]+\+1.21.3.pre'

jobs:
build-java-and-linux-amd64:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: 1.21.2 Build and Release
name: 1.21.3 Build and Release

on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+\+1.21.2'
- '[0-9]+.[0-9]+.[0-9]+\+1.21.3'

jobs:
build-java-and-linux-amd64:
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group = "com.zenith"
version = "1.21.2"
version = "1.21.3"

val javaVersion23 = JavaLanguageVersion.of(23)
val javaVersion21 = JavaLanguageVersion.of(21)
Expand Down Expand Up @@ -57,7 +57,7 @@ dependencies {
implementation("com.github.rfresh2.discord4j:discord4j-core:3.4.3.9") {
exclude(group = "io.netty")
}
implementation("com.github.rfresh2:MCProtocolLib:1.21.2.7") {
implementation("com.github.rfresh2:MCProtocolLib:1.21.3.1") {
exclude(group = "io.netty.incubator")
exclude(group = "io.netty")
}
Expand Down
2 changes: 1 addition & 1 deletion src/launcher/launch_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def read_launch_config_file():
class LaunchConfig:
auto_update = True
auto_update_launcher = True
release_channel = "java.1.21.2"
release_channel = "java.1.21.3"
version = "0.0.0"
local_version = "0.0.0"
repo_owner = "rfresh2"
Expand Down
2 changes: 1 addition & 1 deletion src/launcher/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def setup_execute(config):
# print("Invalid input. Enter 1 or 2")
# print("")

minecraft_version = "1.21.2"
minecraft_version = "1.21.3"

config.auto_update = True
config.auto_update_launcher = True
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/zenith/module/impl/PlayerSimulation.java
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ private void tryCheckInsideBlocks() {
fallDistance = 0.0;
stuckSpeedMultiplier.set(0.25, 0.05, 0.25);
} else if (localState.block() == BlockRegistry.HONEY_BLOCK) {
// todo: changes in 1.21.2
// todo: changes in 1.21.3
if (isSlidingDownHoneyBlock(localState.x(), localState.y(), localState.z())) {
if (velocity.getY() < -0.13) {
double d = -0.05 / velocity.getY();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/zenith/util/LaunchConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
public class LaunchConfig {
public boolean auto_update = true;
public boolean auto_update_launcher = true;
public String release_channel = "java.1.21.2";
public String release_channel = "java.1.21.3";
public @Nullable String getMcVersion() {
try {
return release_channel.substring(release_channel.indexOf('.') + 1);
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/zenith/via/ZenithViaInitializer.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void init() {
// pipeline order after readTimeout -> encryption -> sizer -> compression -> via-codec -> codec -> manager

public void clientViaChannelInitializer(Channel channel, Session client) {
// todo: remove when via supports 1.21.2
// todo: remove when via supports 1.21.3
if (true) return;

if (!CONFIG.client.viaversion.enabled) return;
Expand All @@ -71,7 +71,7 @@ public void clientViaChannelInitializer(Channel channel, Session client) {
}

public void serverViaChannelInitializer(final Channel channel) {
// todo: remove when via supports 1.21.2
// todo: remove when via supports 1.21.3
if (true) return;

if (!CONFIG.server.viaversion.enabled) return;
Expand Down

0 comments on commit 334e88c

Please sign in to comment.