Skip to content

Commit

Permalink
Removed debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
fuj1n committed Mar 15, 2014
1 parent 854f92b commit 666bfa8
Showing 1 changed file with 0 additions and 4 deletions.
Expand Up @@ -25,7 +25,6 @@ public PacketUpdateTE(int x, int y, int z, NBTTagCompound data) {

@Override
public void encodeInto(ChannelHandlerContext ctx, ByteBuf buffer) {
System.out.println("Encoding...");
PacketBuffer pbuff = new PacketBuffer(buffer);
pbuff.writeInt(x);
pbuff.writeShort(y);
Expand All @@ -39,7 +38,6 @@ public void encodeInto(ChannelHandlerContext ctx, ByteBuf buffer) {

@Override
public void decodeInto(ChannelHandlerContext ctx, ByteBuf buffer) {
System.out.println("Decoding...");
PacketBuffer pbuff = new PacketBuffer(buffer);
x = pbuff.readInt();
y = pbuff.readShort();
Expand All @@ -53,7 +51,6 @@ public void decodeInto(ChannelHandlerContext ctx, ByteBuf buffer) {

@Override
public void handleClientSide(EntityPlayer player) {
System.out.println("Handling client...");
TileEntity te = player.worldObj.getTileEntity(x, y, z);

if (te != null) {
Expand All @@ -63,7 +60,6 @@ public void handleClientSide(EntityPlayer player) {

@Override
public void handleServerSide(EntityPlayer player) {
System.out.println("Handling server...");
}

}

0 comments on commit 666bfa8

Please sign in to comment.