Skip to content

Commit

Permalink
Update to 1.17-pre4 and fix Bedrock encryption on Java 16
Browse files Browse the repository at this point in the history
  • Loading branch information
Camotoy committed Jun 3, 2021
1 parent 4f23066 commit d6bee02
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<dependency>
<groupId>com.github.CloudburstMC.Protocol</groupId>
<artifactId>bedrock-v440</artifactId>
<version>a8f4e93</version>
<version>1656151</version>
<scope>compile</scope>
<exclusions>
<exclusion>
Expand Down Expand Up @@ -122,7 +122,10 @@
<dependency>
<groupId>com.github.GeyserMC</groupId>
<artifactId>MCProtocolLib</artifactId>
<version>ba26c10</version>
<version>5ff383d27aafd081d929fe61a7c46fb03d5e7537</version>
<!-- <groupId>com.github.steveice10</groupId>-->
<!-- <artifactId>mcprotocollib</artifactId>-->
<!-- <version>1.17-pre4-SNAPSHOT</version>-->
<scope>compile</scope>
<exclusions>
<exclusion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ private Function<Vector3f, BedrockPacket> createParticle(GeyserSession session,
return packet;
};
}
case DUST: {
case DUST:
case DUST_COLOR_TRANSITION: { //TODO
DustParticleData data = (DustParticleData) particle.getData();
int r = (int) (data.getRed() * 255);
int g = (int) (data.getGreen() * 255);
Expand Down

0 comments on commit d6bee02

Please sign in to comment.