PATCHES MOD
If you were ever annoyed by, for example, the violently teleporting players on mounts, this mod (or actually coremod) fixes this problem.
ATTENTION: This is a COREMOD, so you have to put it in coremods folder, not mods!
"Features" (or actually fixes):
Multiplayer mount player teleports:
This version suffers from the weird problem making the players (from others' perspective) being attatched to the mount and being stuck in air alternately. This line of code makes the problem:
if (this.field_85178_v != this.myEntity.ridingEntity || this.myEntity.ridingEntity != null && this.ticks % 60 == 0)
{
this.field_85178_v = this.myEntity.ridingEntity;
this.sendPacketToAllTrackingPlayers(new Packet39AttachEntity(this.myEntity, this.myEntity.ridingEntity));
}
This is supposed to make sure the entity is attatched to the mount and to achieve that it sends the packet to attatch the entity every 60 ticks. For whatever reason this makes a problem when the player is the one riding the entity. It should be fixed now, not sure whether this causes some problems, but it should not.
If you have any requests to what should be fixed, feel free to ask!

