mirror of
https://github.com/italicsjenga/valence.git
synced 2025-01-27 05:56:33 +11:00
Fix Particle packet id (#281)
Fixes #267 ## Description Swap packet ids `ParticleS2c` with `LightUpdateS2c` ## Test Plan Steps: 1. Run the `particles.rs` example
This commit is contained in:
parent
491e3a61d7
commit
cd7dd8cc4c
1 changed files with 2 additions and 2 deletions
|
@ -289,8 +289,8 @@ pub mod play {
|
|||
31 = KeepAliveS2c,
|
||||
32 = ChunkDataS2c<'a>,
|
||||
33 = WorldEventS2c,
|
||||
34 = LightUpdateS2c,
|
||||
35 = ParticleS2c<'a>,
|
||||
34 = ParticleS2c<'a>,
|
||||
35 = LightUpdateS2c,
|
||||
36 = GameJoinS2c<'a>,
|
||||
37 = MapUpdateS2c<'a>,
|
||||
38 = SetTradeOffersS2c,
|
||||
|
|
Loading…
Add table
Reference in a new issue