Skip to content

Commit

Permalink
Merge pull request #45 from SpigotRCE/fix/44
Browse files Browse the repository at this point in the history
Fix/44
  • Loading branch information
SpigotRCE authored Mar 2, 2025
2 parents cb8c8d0 + 4ec9a1c commit 4dac164
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# **ParadiseClient-Fabric v1.21.4 g3 b13**
# **ParadiseClient-Fabric v1.21.4 g3 b14**

**ParadiseClient-Fabric** is a Minecraft Fabric mod specifically designed for penetration testing Minecraft servers and networks.

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ loader_version=0.16.9
# Fabric API
fabric_version=0.113.0+1.21.4
# Mod Properties
mod_version=1.21.4-3-13
mod_version=1.21.4-3-14
maven_group=io.github.spigotrce
archives_base_name=ParadiseClient-Fabric
viafabricplus_version=3.5.1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Constants {
/**
* The version of the mod.
*/
public static final String VERSION = "1.21.4-3-13";
public static final String VERSION = "1.21.4-3-14";

/**
* The ID of the mod.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ private void getClientTitle(CallbackInfoReturnable<String> callback) {
*/
@Inject(method = "close", at = @At(value = "HEAD"))
private void closeHead(CallbackInfo ci) {
ParadiseClient_Fabric.CHAT_ROOM_MOD.client.shutdown();
// Disabled as we are currently not using chatroom
// ParadiseClient_Fabric.CHAT_ROOM_MOD.client.shutdown();
}

/**
Expand Down

0 comments on commit 4dac164

Please sign in to comment.