Mirror von
https://github.com/ViaVersion/ViaBackwards.git
synchronisiert 2024-11-16 04:50:10 +01:00
Update VV usage
Dieser Commit ist enthalten in:
Ursprung
d6279757bb
Commit
6cc4990b6e
@ -155,7 +155,7 @@ public final class Protocol1_20_2To1_20 extends BackwardsProtocol<ClientboundPac
|
|||||||
wrapper.cancel();
|
wrapper.cancel();
|
||||||
});
|
});
|
||||||
registerClientbound(State.CONFIGURATION, ClientboundConfigurationPackets1_20_2.UPDATE_TAGS.getId(), -1, wrapper -> {
|
registerClientbound(State.CONFIGURATION, ClientboundConfigurationPackets1_20_2.UPDATE_TAGS.getId(), -1, wrapper -> {
|
||||||
tagRewriter.getGenericHandler().handle(wrapper);
|
tagRewriter.handleGeneric(wrapper);
|
||||||
wrapper.user().get(ConfigurationPacketStorage.class).addRawPacket(wrapper, ClientboundPackets1_19_4.UPDATE_TAGS);
|
wrapper.user().get(ConfigurationPacketStorage.class).addRawPacket(wrapper, ClientboundPackets1_19_4.UPDATE_TAGS);
|
||||||
wrapper.cancel();
|
wrapper.cancel();
|
||||||
});
|
});
|
||||||
|
@ -84,7 +84,7 @@ public final class Protocol1_20_5To1_20_3 extends BackwardsProtocol<ClientboundP
|
|||||||
registerClientbound(ClientboundConfigurationPackets1_20_5.UPDATE_TAGS, wrapper -> {
|
registerClientbound(ClientboundConfigurationPackets1_20_5.UPDATE_TAGS, wrapper -> {
|
||||||
// Send off registry data first, needed for tags
|
// Send off registry data first, needed for tags
|
||||||
sendRegistryData(wrapper.user());
|
sendRegistryData(wrapper.user());
|
||||||
tagRewriter.getGenericHandler().handle(wrapper);
|
tagRewriter.handleGeneric(wrapper);
|
||||||
});
|
});
|
||||||
|
|
||||||
registerClientbound(ClientboundConfigurationPackets1_20_5.FINISH_CONFIGURATION, wrapper -> {
|
registerClientbound(ClientboundConfigurationPackets1_20_5.FINISH_CONFIGURATION, wrapper -> {
|
||||||
|
@ -143,8 +143,10 @@ public final class BlockItemPacketRewriter1_20_5 extends BackwardsStructuredItem
|
|||||||
wrapper.passthrough(Types.FLOAT); // Knockback Z
|
wrapper.passthrough(Types.FLOAT); // Knockback Z
|
||||||
wrapper.passthrough(Types.VAR_INT); // Block interaction type
|
wrapper.passthrough(Types.VAR_INT); // Block interaction type
|
||||||
|
|
||||||
protocol.getEntityRewriter().rewriteParticle(wrapper, Types1_20_5.PARTICLE, Types1_20_3.PARTICLE); // Small explosion particle
|
final Particle smallExplosionParticle = wrapper.passthroughAndMap(Types1_20_5.PARTICLE, Types1_20_3.PARTICLE);
|
||||||
protocol.getEntityRewriter().rewriteParticle(wrapper, Types1_20_5.PARTICLE, Types1_20_3.PARTICLE); // Large explosion particle
|
final Particle largeExplosionParticle = wrapper.passthroughAndMap(Types1_20_5.PARTICLE, Types1_20_3.PARTICLE);
|
||||||
|
rewriteParticle(wrapper.user(), smallExplosionParticle);
|
||||||
|
rewriteParticle(wrapper.user(), largeExplosionParticle);
|
||||||
|
|
||||||
final Holder<SoundEvent> soundEventHolder = wrapper.read(Types.SOUND_EVENT);
|
final Holder<SoundEvent> soundEventHolder = wrapper.read(Types.SOUND_EVENT);
|
||||||
if (soundEventHolder.isDirect()) {
|
if (soundEventHolder.isDirect()) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren