Skip to content

Commit

Permalink
Minor adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
Morphan1 committed Jul 16, 2015
1 parent c910c7d commit 546c853
Showing 1 changed file with 8 additions and 8 deletions.
Expand Up @@ -87,15 +87,20 @@ public void c() {
}

@Override
public void a(PacketPlayInArmAnimation packet) {
oldListener.a(packet);
public void a(PacketPlayInChat packet) {
super.a(packet);
}

@Override
public void a(PacketPlayInChat packet) {
public void a(PacketPlayInKeepAlive packet) {
super.a(packet);
}

@Override
public void a(PacketPlayInArmAnimation packet) {
oldListener.a(packet);
}

@Override
public void a(PacketPlayInTabComplete packet) {
super.a(packet);
Expand Down Expand Up @@ -141,11 +146,6 @@ public void a(PacketPlayInUseEntity packet) {
oldListener.a(packet);
}

@Override
public void a(PacketPlayInKeepAlive packet) {
oldListener.a(packet);
}

@Override
public void a(PacketPlayInFlying packet) {
oldListener.a(packet);
Expand Down

0 comments on commit 546c853

Please sign in to comment.