Small fixes and formatting

This commit is contained in:
Hugo Kerstens 2016-03-23 00:26:38 +01:00
parent f6bb1b48f5
commit 9c5c181389
2 changed files with 4 additions and 2 deletions

View File

@ -28,7 +28,7 @@ public class BaseProtocol extends Protocol {
@Override
protected void registerPackets() {
/* Outgoing Packets */
registerOutgoing(State.STATUS, 0x00, 0x00, new PacketRemapper() {
registerOutgoing(State.STATUS, 0x00, 0x00, new PacketRemapper() { // Status Response Packet
@Override
public void registerMap() {
map(Type.STRING);
@ -59,7 +59,8 @@ public class BaseProtocol extends Protocol {
}
});
}
}); // Status Response Packet
});
registerOutgoing(State.STATUS, 0x01, 0x01); // Status Pong Packet
registerOutgoing(State.LOGIN, 0x00, 0x00); // Login Disconnect Packet

View File

@ -146,6 +146,7 @@ public class EntityPackets {
public void handle(PacketWrapper wrapper) throws Exception {
Item stack = wrapper.get(Type.ITEM, 0);
ItemRewriter.toClient(stack);
wrapper.set(Type.ITEM, 0, stack);
}
});
// Blocking