Skip to content

Commit

Permalink
Release 3.4.7: Hotfix first game start
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianMichael committed Sep 18, 2024
1 parent 0b403f9 commit 906a800
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ dependencies {

modCompileOnly "com.terraformersmc:modmenu:11.0.2"

jij "com.viaversion:viaversion-common:5.0.4-SNAPSHOT"
jij "com.viaversion:viabackwards-common:5.0.4-SNAPSHOT"
jij "net.raphimc:viaaprilfools-common:3.0.2-SNAPSHOT"
jij "net.raphimc:ViaLegacy:3.0.3-SNAPSHOT"
jij ("net.raphimc:ViaBedrock:0.0.12-SNAPSHOT") {
jij "com.viaversion:viaversion-common:5.0.4-20240915.195414-38"
jij "com.viaversion:viabackwards-common:5.0.4-20240915.201013-22"
jij "net.raphimc:viaaprilfools-common:3.0.2-20240916.221413-11"
jij "net.raphimc:ViaLegacy:3.0.3-20240916.221613-21"
jij ("net.raphimc:ViaBedrock:0.0.12-20240917.230727-1") {
exclude group: "io.jsonwebtoken"
exclude group: "com.mojang", module: "brigadier"
}
jij ("net.raphimc:ViaLoader:3.0.3-SNAPSHOT") {
jij ("net.raphimc:ViaLoader:3.0.3-20240918.152216-18") {
exclude group: "com.google.guava", module: "guava"
exclude group: "org.slf4j", module: "slf4j-api"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ org.gradle.parallel=true
# Project Details
maven_group=de.florianmichael
maven_name=ViaFabricPlus
maven_version=3.4.7-SNAPSHOT
maven_version=3.4.7
maven_description=Fabric mod to connect to EVERY Minecraft server version (Release, Beta, Alpha, Classic, Snapshots, Bedrock) with QoL fixes to the gameplay

# Minecraft/Fabric
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ public void read(JsonObject object) {

@Override
public void postInit() {
if (selectedProtocolVersion == null) {
return;
}
// Set target version AFTER protocol loading, so we can reach all versions
if (GeneralSettings.global().saveSelectedProtocolVersion.getValue()) {
final ProtocolVersion protocolVersion = protocolVersionByName(selectedProtocolVersion);
Expand Down

0 comments on commit 906a800

Please sign in to comment.