mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-21 17:45:36 +01:00
Actually restrict velocity change to fishing hooks
This commit is contained in:
parent
f4d6659760
commit
c5dc5b2bf8
@ -146,8 +146,10 @@ public class EntityPacketRewriter1_11 extends EntityRewriter<ClientboundPackets1
|
||||
});
|
||||
|
||||
protocol.registerClientbound(ClientboundPackets1_9_3.SET_ENTITY_MOTION, wrapper -> {
|
||||
wrapper.passthrough(Types.VAR_INT); // Entity id
|
||||
tryFixFishingHookVelocity(wrapper);
|
||||
final int entityId = wrapper.passthrough(Types.VAR_INT);
|
||||
if (tracker(wrapper.user()).entityType(entityId) == EntityTypes1_10.EntityType.FISHING_HOOK) {
|
||||
tryFixFishingHookVelocity(wrapper);
|
||||
}
|
||||
});
|
||||
|
||||
registerRemoveEntities(ClientboundPackets1_9_3.REMOVE_ENTITIES);
|
||||
|
Loading…
Reference in New Issue
Block a user