aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2022-05-07 23:38:16 +0000
committerGitHub <noreply@github.com>2022-05-07 23:38:16 +0000
commitd9e388d8b0d8b3bdcf7a2e21b0cd2daa78d295e7 (patch)
tree8165f83b45e06c17d9114f1672ac73f202ba4b68 /azalea-client/src
parent71acb5b3363fe8a7a9ac09691de01d7342db3ad1 (diff)
parentf198bdf777d4c68b11e6aeabeb96b5035e1ec5e1 (diff)
downloadazalea-drasl-d9e388d8b0d8b3bdcf7a2e21b0cd2daa78d295e7.tar.xz
Merge pull request #5 from mat-1/code-gen
Code gen
Diffstat (limited to 'azalea-client/src')
-rwxr-xr-xazalea-client/src/connect.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs
index 15d6df4c..e35024e0 100755
--- a/azalea-client/src/connect.rs
+++ b/azalea-client/src/connect.rs
@@ -264,6 +264,12 @@ impl Client {
GamePacket::ClientboundSetTimePacket(p) => {
println!("Got set time packet {:?}", p);
}
+ GamePacket::ClientboundSetDefaultSpawnPositionPacket(p) => {
+ println!("Got set default spawn position packet {:?}", p);
+ }
+ GamePacket::ClientboundContainerSetContentPacket(p) => {
+ println!("Got container set content packet {:?}", p);
+ }
_ => panic!("Unexpected packet {:?}", packet),
}
println!();