Skip to content

Commit

Permalink
Update to 1.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
senseiwells committed Dec 8, 2023
1 parent 33a218c commit cde27ce
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 5 deletions.
21 changes: 21 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,27 @@ jar {
from "LICENSE"
}

publishMods {
file = remapJar.archiveFile
changelog = """
- Updated to 1.20.4
"""
type = STABLE
modLoaders.add("fabric")

displayName = "ChunkDebug ${minecraft_version} v${mod_version}"

modrinth {
accessToken = providers.environmentVariable("MODRINTH_API_KEY")
projectId = "zQxjhDPq"
minecraftVersions.add(minecraft_version)

requires {
id = "P7dR8mSH"
}
}
}

publishing {
publications {
mavenJava(MavenPublication) {
Expand Down
Empty file removed common.gradle
Empty file.
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx6G
# Fabric Properties
minecraft_version=1.20.2
yarn_mappings=1.20.2+build.4
loader_version=0.14.24
minecraft_version=1.20.4
yarn_mappings=1.20.4+build.1
loader_version=0.15.0
# Mod Properties
mod_version = 1.1.0
maven_group = chunk-debug
# Dependencies
fabric_version=0.90.7+1.20.2
fabric_version=0.91.1+1.20.4
minecraft_dependency=1.20.x
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void onHello(ServerPlayerEntity player, PacketByteBuf packetByteBuf) {
return;
}
this.validPlayersEnabled.put(player.networkHandler, null);
ChunkDebugServer.LOGGER.info("%s has logged in with ChunkDebug. EssentialClient %s".formatted(player.getEntityName(), essentialVersion));
ChunkDebugServer.LOGGER.info("%s has logged in with ChunkDebug. EssentialClient %s".formatted(player.getNameForScoreboard(), essentialVersion));
}

public void removeHandler(ServerPlayNetworkHandler handler) {
Expand Down

0 comments on commit cde27ce

Please sign in to comment.