3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-10-02 00:10:06 +02:00

Actually restrict velocity change to fishing hooks

Dieser Commit ist enthalten in:
Nassim Jahnke 2024-06-28 15:28:07 +02:00
Ursprung f4d6659760
Commit c5dc5b2bf8
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: EF6771C01F6EF02F

Datei anzeigen

@ -146,8 +146,10 @@ public class EntityPacketRewriter1_11 extends EntityRewriter<ClientboundPackets1
}); });
protocol.registerClientbound(ClientboundPackets1_9_3.SET_ENTITY_MOTION, wrapper -> { protocol.registerClientbound(ClientboundPackets1_9_3.SET_ENTITY_MOTION, wrapper -> {
wrapper.passthrough(Types.VAR_INT); // Entity id final int entityId = wrapper.passthrough(Types.VAR_INT);
tryFixFishingHookVelocity(wrapper); if (tracker(wrapper.user()).entityType(entityId) == EntityTypes1_10.EntityType.FISHING_HOOK) {
tryFixFishingHookVelocity(wrapper);
}
}); });
registerRemoveEntities(ClientboundPackets1_9_3.REMOVE_ENTITIES); registerRemoveEntities(ClientboundPackets1_9_3.REMOVE_ENTITIES);