Skip to content

Commit

Permalink
Update for MCBE 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
Crasher508 committed Jun 23, 2023
1 parent cfeb934 commit bab8c15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

- Java 11
- Minecraft: Java Edition v1.19.1/1.19.2
- Bedrock Edition server v1.19.80
- Bedrock Edition server v1.20

## Need implemented

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/barrelmc/barrel/server/ProxyServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import org.barrelmc.barrel.player.Player;
import org.barrelmc.barrel.utils.FileManager;
import org.cloudburstmc.protocol.bedrock.codec.BedrockCodec;
import org.cloudburstmc.protocol.bedrock.codec.v582.Bedrock_v582;
import org.cloudburstmc.protocol.bedrock.codec.v589.Bedrock_v589;
import org.yaml.snakeyaml.Yaml;

import java.io.FileInputStream;
Expand All @@ -54,7 +54,7 @@ public class ProxyServer {
@Getter
private final Map<String, Player> onlinePlayers = new ConcurrentHashMap<>();
@Getter
private final BedrockCodec bedrockPacketCodec = Bedrock_v582.CODEC;
private final BedrockCodec bedrockPacketCodec = Bedrock_v589.CODEC;

@Getter
private final Path dataPath;
Expand Down

0 comments on commit bab8c15

Please sign in to comment.