Skip to content

Commit 6d82839

Browse files
committed
1.20.3-pre4
1 parent c039f4e commit 6d82839

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

api/src/main/java/com/viaversion/viaversion/api/protocol/version/ProtocolVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public class ProtocolVersion {
8585
public static final ProtocolVersion v1_19_4 = register(762, "1.19.4");
8686
public static final ProtocolVersion v1_20 = register(763, "1.20/1.20.1", new VersionRange("1.20", 0, 1));
8787
public static final ProtocolVersion v1_20_2 = register(764, "1.20.2");
88-
public static final ProtocolVersion v1_20_3 = register(765, 166, "1.20.3");
88+
public static final ProtocolVersion v1_20_3 = register(765, 167, "1.20.3");
8989
public static final ProtocolVersion unknown = register(-1, "UNKNOWN");
9090

9191
public static ProtocolVersion register(int version, String name) {

common/src/main/java/com/viaversion/viaversion/protocols/protocol1_20_3to1_20_2/Protocol1_20_3To1_20_2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ protected void registerPackets() {
120120
return;
121121
}
122122

123-
wrapper.write(Type.STRING, objectiveName != null ? objectiveName : "");
123+
wrapper.write(Type.STRING, objectiveName);
124124
wrapper.passthrough(Type.VAR_INT); // Score
125125

126126
// Null display and number format

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Project properties - we put these here so they can be modified without causing a recompile of the build scripts
2-
projectVersion=4.9.0-1.20.3-pre3-SNAPSHOT
2+
projectVersion=4.9.0-1.20.3-pre4-SNAPSHOT
33

44
# Smile emoji
55
mcVersions=1.20.2, 1.20.1, 1.20, 1.19.4, 1.19.3, 1.19.2, 1.19.1, 1.19, 1.18.2, 1.18.1, 1.18, 1.17.1, 1.17, 1.16.5, 1.16.4, 1.16.3, 1.16.2, 1.16.1, 1.16, 1.15.2, 1.15.1, 1.15, 1.14.4, 1.14.3, 1.14.2, 1.14.1, 1.14, 1.13.2, 1.13.1, 1.13, 1.12.2, 1.12.1, 1.12, 1.11.2, 1.11.1, 1.11, 1.10.2, 1.10.1, 1.10, 1.9.4, 1.9.3, 1.9.2, 1.9.1, 1.9, 1.8.9

0 commit comments

Comments
 (0)