We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b02f018 commit 1df6080Copy full SHA for 1df6080
1 file changed
common/src/main/java/com/turikhay/mc/mapmodcompanion/LevelMapProperties.java
@@ -14,9 +14,9 @@ public StandardId deserialize(byte[] data) throws MalformedPacketException {
14
if (marker == 0) {
15
return new StandardId(in.readInt());
16
}
17
- throw new MalformedPacketException("invalid marker byte (0x" + Integer.toHexString(marker) + ") in the standard id packet");
+ throw new MalformedPacketException("invalid marker byte (0x" + Integer.toHexString(marker) + ") in the level map properties packet");
18
} catch (IOException e) {
19
- throw new MalformedPacketException("unexpected error reading standard id packet", e);
+ throw new MalformedPacketException("unexpected error reading level map properties packet", e);
20
21
22
0 commit comments