commands, camera, messages, overlay, ..
This commit is contained in:
parent
75f91dbf4c
commit
d45cd7ec2c
126 changed files with 854 additions and 628 deletions
|
@ -3,12 +3,12 @@ package game.packet;
|
|||
import java.io.IOException;
|
||||
|
||||
import game.item.ItemStack;
|
||||
import game.network.NetHandlerPlayServer;
|
||||
import game.network.Player;
|
||||
import game.network.Packet;
|
||||
import game.network.PacketBuffer;
|
||||
import game.world.BlockPos;
|
||||
|
||||
public class CPacketPlace implements Packet<NetHandlerPlayServer>
|
||||
public class CPacketPlace implements Packet<Player>
|
||||
{
|
||||
private static final BlockPos DUMMY_POS = new BlockPos(-1, -1, -1);
|
||||
|
||||
|
@ -58,7 +58,7 @@ public class CPacketPlace implements Packet<NetHandlerPlayServer>
|
|||
buf.writeByte((int)(this.facingZ * 16.0F));
|
||||
}
|
||||
|
||||
public void processPacket(NetHandlerPlayServer handler)
|
||||
public void processPacket(Player handler)
|
||||
{
|
||||
handler.processPlace(this);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue