Restore diff missed in 4176258a836062b22ac46919aefa5cc36fae78f2

Dieser Commit ist enthalten in:
Wesley Wolfe 2013-08-01 12:12:40 -05:00
Ursprung 69d3362335
Commit c8b09db844

Datei anzeigen

@ -343,6 +343,10 @@ public class EntityTrackerEntry {
entityplayer.playerConnection.sendPacket(new Packet28EntityVelocity(this.tracker.id, this.tracker.motX, this.tracker.motY, this.tracker.motZ));
}
if (this.tracker.vehicle != null) {
entityplayer.playerConnection.sendPacket(new Packet39AttachEntity(0, this.tracker, this.tracker.vehicle));
}
if (this.tracker instanceof EntityInsentient && ((EntityInsentient) this.tracker).bI() != null) {
entityplayer.playerConnection.sendPacket(new Packet39AttachEntity(1, this.tracker, ((EntityInsentient) this.tracker).bI()));
}