Skip to content

Commit

Permalink
1.1.10: Full 1.19.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
hevav committed Mar 15, 2023
1 parent 7b31841 commit ac434c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.9
1.1.10
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

setGroup("net.elytrium")
setVersion("1.1.9")
setVersion("1.1.10")

compileJava {
getOptions().setEncoding("UTF-8")
Expand Down
1 change: 1 addition & 0 deletions src/main/java/net/elytrium/limbofilter/LimboFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ public void onProxyInitialization(ProxyInitializeEvent event) {
this.limboFactory.registerPacket(PacketDirection.CLIENTBOUND, SpawnEntity.class, SpawnEntity::new, new PacketMapping[]{
new PacketMapping(0x0E, ProtocolVersion.MINIMUM_VERSION, true),
new PacketMapping(0x00, ProtocolVersion.MINECRAFT_1_9, true),
new PacketMapping(0x01, ProtocolVersion.MINECRAFT_1_19_4, true),
});

this.reload();
Expand Down

0 comments on commit ac434c3

Please sign in to comment.