Skip to content

Commit d30b725

Browse files
1.21.5
1 parent 71da0ee commit d30b725

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ org.gradle.parallel=true
44

55
# Fabric Properties
66
# check these on https://fabricmc.net/develop
7-
minecraft_version=1.21
8-
yarn_mappings=1.21+build.9
9-
loader_version=0.15.11
7+
minecraft_version=1.21.5
8+
yarn_mappings=1.21.5+build.1
9+
loader_version=0.16.12
1010

1111
# Mod Properties
12-
mod_version=1.0.1
12+
mod_version=1.1.0
1313
maven_group=uk.u32
1414
archives_base_name=packeterrorhandling
1515

src/main/java/uk/u32/packeterrorhandling/mixin/ClientConnectionMixin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ private void replaceDefaultExceptionListener(Packet<?> packet, @Nullable PacketC
4646
public void handleException(Packet<?> packet, Throwable ex) {
4747
if (packet.isWritingErrorSkippable()) {
4848
if (!LOGGER.isDebugEnabled()) {
49-
LOGGER.warn(String.format("Failed to send packet %s, skipping", packet.getPacketId()));
49+
LOGGER.warn("Failed to send packet {}, skipping", packet.getPacketType().toString());
5050
} else {
51-
LOGGER.warn(String.format("Failed to send packet %s, skipping", packet.getPacketId()), ex);
51+
LOGGER.warn("Failed to send packet {}, skipping", packet.getPacketType().toString(), ex);
5252
}
5353
} else {
5454
this.exceptionCaught(null, ex);

src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"depends": {
1818
"fabricloader": ">=0.15.11",
19-
"minecraft": "~1.21",
19+
"minecraft": "~1.21.5",
2020
"java": ">=21"
2121
}
2222
}

0 commit comments

Comments
 (0)