forked from GeyserMC/Geyser
Don't play a sound when falling onto a block (#1175)
This commit is contained in:
parent
7fcfa7d54d
commit
ee42067d87
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ public class JavaSpawnParticleTranslator extends PacketTranslator<ServerSpawnPar
|
||||||
LevelEventPacket particle = new LevelEventPacket();
|
LevelEventPacket particle = new LevelEventPacket();
|
||||||
switch (packet.getParticle().getType()) {
|
switch (packet.getParticle().getType()) {
|
||||||
case BLOCK:
|
case BLOCK:
|
||||||
particle.setType(LevelEventType.PARTICLE_DESTROY_BLOCK);
|
particle.setType(LevelEventType.PARTICLE_DESTROY_BLOCK_NO_SOUND);
|
||||||
particle.setPosition(Vector3f.from(packet.getX(), packet.getY(), packet.getZ()));
|
particle.setPosition(Vector3f.from(packet.getX(), packet.getY(), packet.getZ()));
|
||||||
particle.setData(BlockTranslator.getBedrockBlockId(((BlockParticleData) packet.getParticle().getData()).getBlockState()));
|
particle.setData(BlockTranslator.getBedrockBlockId(((BlockParticleData) packet.getParticle().getData()).getBlockState()));
|
||||||
session.sendUpstreamPacket(particle);
|
session.sendUpstreamPacket(particle);
|
||||||
|
|
Loading…
Reference in a new issue