Archived
0

remove unused packet

This commit is contained in:
2019-02-11 15:35:36 +03:00
parent 63b68c481b
commit 1e6e9500c1
2 changed files with 0 additions and 14 deletions

View File

@@ -78,7 +78,6 @@ public enum State {
.put(0x0E, PlayerPositionAndLookPacket.class)
.put(0x0F, PlayerLookPacket.class)
.put(0x13, PlayerAbilitiesPacket.class)
.put(0x1A, HeldItemChangePacket.class)
.build(),
ImmutableMap.<Class<? extends SCPacket>, Integer>builder()
.put(BossBarPacket.class, 0x0C)

View File

@@ -1,13 +0,0 @@
package mc.core.network.proto_1_12_2.packets.clientside;
import mc.core.network.CSPacket;
import mc.core.network.NetInputStream;
public class HeldItemChangePacket implements CSPacket {
private int slot;
@Override
public void readSelf(NetInputStream netStream) {
this.slot = netStream.readShort();
}
}