mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-22 01:55:47 +01:00
Handle 1.21.2 block_crumble particle
This commit is contained in:
parent
cb0c301baf
commit
f26e370a49
@ -36,6 +36,7 @@ public class ParticleMappings extends FullMappingsBase {
|
|||||||
addBlockParticle("falling_dust");
|
addBlockParticle("falling_dust");
|
||||||
addBlockParticle("block_marker");
|
addBlockParticle("block_marker");
|
||||||
addBlockParticle("dust_pillar");
|
addBlockParticle("dust_pillar");
|
||||||
|
addBlockParticle("block_crumble");
|
||||||
addItemParticle("item");
|
addItemParticle("item");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,9 +117,10 @@ final class Protocol1_99To_98 extends AbstractProtocol<ClientboundPacket1_21, Cl
|
|||||||
/*Types1_21_2.PARTICLE.filler(this)
|
/*Types1_21_2.PARTICLE.filler(this)
|
||||||
.reader("block", ParticleType.Readers.BLOCK)
|
.reader("block", ParticleType.Readers.BLOCK)
|
||||||
.reader("block_marker", ParticleType.Readers.BLOCK)
|
.reader("block_marker", ParticleType.Readers.BLOCK)
|
||||||
.reader("dust", ParticleType.Readers.DUST1_21_2)
|
|
||||||
.reader("dust_pillar", ParticleType.Readers.BLOCK)
|
.reader("dust_pillar", ParticleType.Readers.BLOCK)
|
||||||
.reader("falling_dust", ParticleType.Readers.BLOCK)
|
.reader("falling_dust", ParticleType.Readers.BLOCK)
|
||||||
|
.reader("block_crumble", ParticleType.Readers.BLOCK)
|
||||||
|
.reader("dust", ParticleType.Readers.DUST1_21_2)
|
||||||
.reader("dust_color_transition", ParticleType.Readers.DUST_TRANSITION1_21_2)
|
.reader("dust_color_transition", ParticleType.Readers.DUST_TRANSITION1_21_2)
|
||||||
.reader("vibration", ParticleType.Readers.VIBRATION1_20_3)
|
.reader("vibration", ParticleType.Readers.VIBRATION1_20_3)
|
||||||
.reader("sculk_charge", ParticleType.Readers.SCULK_CHARGE)
|
.reader("sculk_charge", ParticleType.Readers.SCULK_CHARGE)
|
||||||
|
@ -194,9 +194,10 @@ public final class Protocol1_21To1_21_2 extends AbstractProtocol<ClientboundPack
|
|||||||
Types1_21_2.PARTICLE.filler(this)
|
Types1_21_2.PARTICLE.filler(this)
|
||||||
.reader("block", ParticleType.Readers.BLOCK)
|
.reader("block", ParticleType.Readers.BLOCK)
|
||||||
.reader("block_marker", ParticleType.Readers.BLOCK)
|
.reader("block_marker", ParticleType.Readers.BLOCK)
|
||||||
.reader("dust", ParticleType.Readers.DUST1_21_2)
|
|
||||||
.reader("dust_pillar", ParticleType.Readers.BLOCK)
|
.reader("dust_pillar", ParticleType.Readers.BLOCK)
|
||||||
.reader("falling_dust", ParticleType.Readers.BLOCK)
|
.reader("falling_dust", ParticleType.Readers.BLOCK)
|
||||||
|
.reader("block_crumble", ParticleType.Readers.BLOCK)
|
||||||
|
.reader("dust", ParticleType.Readers.DUST1_21_2)
|
||||||
.reader("dust_color_transition", ParticleType.Readers.DUST_TRANSITION1_21_2)
|
.reader("dust_color_transition", ParticleType.Readers.DUST_TRANSITION1_21_2)
|
||||||
.reader("vibration", ParticleType.Readers.VIBRATION1_20_3)
|
.reader("vibration", ParticleType.Readers.VIBRATION1_20_3)
|
||||||
.reader("sculk_charge", ParticleType.Readers.SCULK_CHARGE)
|
.reader("sculk_charge", ParticleType.Readers.SCULK_CHARGE)
|
||||||
|
Loading…
Reference in New Issue
Block a user