Skip to content

Commit

Permalink
Add support for v1.16.100.56 + Misc Fixes
Browse files Browse the repository at this point in the history
* Massive modification of how mappings are done. This fixes some invalid packets causing an exception
* Better Education mappings
* Implement support for v1.16.100.56 (V415)

Closes #12

Squashed commit of the following:

commit 5fe6f511b3f866e18ffc00440b8efe6a404a0d35
Author: bundabrg <brendan@grieve.com.au>
Date:   Tue Sep 22 23:39:24 2020 +0800

    Add support for v1.16.100.56

    * Massive modification of how mappings are done. This fixes some invalid packets causing an exception
    * Better Education mappings
    * Implement support for v1.16.100.56 (V415)

    Closes #12

commit 68fd90d
Author: bundabrg <bundabrg@grieve.com.au>
Date:   Tue Sep 22 09:38:08 2020 +0800

    Remove debug log

commit 04adce3
Author: bundabrg <brendan@grieve.com.au>
Date:   Mon Sep 21 10:04:27 2020 +0800

    Start work on v415
  • Loading branch information
bundabrg committed Sep 22, 2020
1 parent 7582404 commit b4bf917
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ allow any supported version to connect to any supported Geyser.
* Minecraft Bedrock v1.16.100.52 (beta)
* Minecraft Bedrock v1.16.100.53 (beta)
* Minecraft Bedrock v1.16.100.55 (beta)
* Minecraft Bedrock v1.16.100.56 (beta)

### Minecraft Education
* Minecraft Education v1.14.31
Expand Down
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ allow any supported version to connect to any supported Geyser.
* Minecraft Bedrock v1.16.100.52 (beta)
* Minecraft Bedrock v1.16.100.53 (beta)
* Minecraft Bedrock v1.16.100.55 (beta)
* Minecraft Bedrock v1.16.100.56 (beta)

### Minecraft Education
* Minecraft Education v1.14.31
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public ReversionServer createReversionServer(InetSocketAddress address) {
.findFirst()
.orElseThrow(() -> new RuntimeException("Unsupported Geyser"));

System.err.println("Codec: " + defaultCodec);
BedrockReversionServer server = new BedrockReversionServer(defaultCodec, address);
server.setHandler(new BedrockEditionServerEventHandler(extension));

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<reversion.version>1.0.11</reversion.version>
<reversion.version>1.0.12</reversion.version>
</properties>

<build>
Expand Down

0 comments on commit b4bf917

Please sign in to comment.