Skip to content

Commit

Permalink
Version 1.3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EssentialGGBot committed Aug 8, 2024
1 parent f12f815 commit 900b282
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
5 changes: 5 additions & 0 deletions changelog/release-1.3.3.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Title: Bug Patch
Summary: Minor bug fixes

## Bug Fixes
- Fixed error when joining a hosted world on Forge 1.16 or above
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ org.gradle.configureondemand=true
org.gradle.parallel.threads=128
org.gradle.jvmargs=-Xmx16G
minecraftVersion=11202
version=1.3.3.1
version=1.3.3.2
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
package gg.essential.mixins.transformers.client.network;

import gg.essential.Essential;
import gg.essential.config.FeatureFlags;
import gg.essential.network.connectionmanager.ice.IIceManager;
import gg.essential.network.pingproxy.ProxyPingServer;
import gg.essential.network.pingproxy.ProxyPingServerKt;
Expand Down Expand Up @@ -88,6 +89,15 @@ private static ChannelFuture injectLocalChannel(Bootstrap bootstrap, InetAddress
if (user != null) {
// ICE connection
IIceManager iceManager = Essential.getInstance().getConnectionManager().getIceManager();
boolean asyncSafe =
//#if FORGE && MC>=11400
//$$ FeatureFlags.NEW_ICE_BACKEND_ENABLED;
//#else
true;
//#endif
if (!asyncSafe) {
return bootstrap.connect(iceManager.createClientAgent(user));
}
Channel channel = bootstrap.register().syncUninterruptibly().channel();
ChannelPromise connectPromise = channel.newPromise();
Dispatchers.getIO().dispatch(EmptyCoroutineContext.INSTANCE, () -> {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/essential/commit.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
90976ad318
5372d82914

0 comments on commit 900b282

Please sign in to comment.