mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-12-04 16:03:46 +01:00
Merge branch 'master' of https://github.com/Matsv/ViaVersion into cmd
This commit is contained in:
commit
eb50f4e907
@ -150,6 +150,7 @@ public class PlayerPackets {
|
|||||||
int entityID = wrapper.get(Type.INT, 0);
|
int entityID = wrapper.get(Type.INT, 0);
|
||||||
EntityTracker tracker = wrapper.user().get(EntityTracker.class);
|
EntityTracker tracker = wrapper.user().get(EntityTracker.class);
|
||||||
tracker.getClientEntityTypes().put(entityID, EntityType.PLAYER);
|
tracker.getClientEntityTypes().put(entityID, EntityType.PLAYER);
|
||||||
|
tracker.setEntityID(entityID);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
map(Type.UNSIGNED_BYTE); // 1 - Player Gamemode
|
map(Type.UNSIGNED_BYTE); // 1 - Player Gamemode
|
||||||
@ -158,15 +159,6 @@ public class PlayerPackets {
|
|||||||
map(Type.UNSIGNED_BYTE); // 4 - Max Players (Tab)
|
map(Type.UNSIGNED_BYTE); // 4 - Max Players (Tab)
|
||||||
map(Type.STRING); // 5 - Level Type
|
map(Type.STRING); // 5 - Level Type
|
||||||
map(Type.BOOLEAN); // 6 - Reduced Debug info
|
map(Type.BOOLEAN); // 6 - Reduced Debug info
|
||||||
|
|
||||||
handler(new PacketHandler() {
|
|
||||||
@Override
|
|
||||||
public void handle(PacketWrapper wrapper) throws Exception {
|
|
||||||
int myID = wrapper.get(Type.INT, 0);
|
|
||||||
EntityTracker tracker = wrapper.user().get(EntityTracker.class);
|
|
||||||
tracker.setEntityID(myID);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@ package us.myles.ViaVersion.protocols.protocol1_9to1_8.packets;
|
|||||||
|
|
||||||
import org.bukkit.entity.EntityType;
|
import org.bukkit.entity.EntityType;
|
||||||
import us.myles.ViaVersion.api.PacketWrapper;
|
import us.myles.ViaVersion.api.PacketWrapper;
|
||||||
|
import us.myles.ViaVersion.api.minecraft.item.Item;
|
||||||
import us.myles.ViaVersion.api.minecraft.metadata.Metadata;
|
import us.myles.ViaVersion.api.minecraft.metadata.Metadata;
|
||||||
import us.myles.ViaVersion.api.protocol.Protocol;
|
import us.myles.ViaVersion.api.protocol.Protocol;
|
||||||
import us.myles.ViaVersion.api.remapper.PacketHandler;
|
import us.myles.ViaVersion.api.remapper.PacketHandler;
|
||||||
@ -253,7 +254,24 @@ public class SpawnPackets {
|
|||||||
map(Type.BYTE); // 5 - Yaw
|
map(Type.BYTE); // 5 - Yaw
|
||||||
map(Type.BYTE); // 6 - Pitch
|
map(Type.BYTE); // 6 - Pitch
|
||||||
|
|
||||||
map(Type.SHORT, Type.NOTHING); // Current Item is discontinued
|
handler(new PacketHandler() { //Handle discontinued player hand item
|
||||||
|
@Override
|
||||||
|
public void handle(PacketWrapper wrapper) throws Exception {
|
||||||
|
short item = wrapper.read(Type.SHORT);
|
||||||
|
System.out.println(item);
|
||||||
|
if (item != 0) {
|
||||||
|
PacketWrapper packet = new PacketWrapper(0x3C, null, wrapper.user());
|
||||||
|
packet.write(Type.VAR_INT, wrapper.get(Type.VAR_INT, 0));
|
||||||
|
packet.write(Type.VAR_INT, 1);
|
||||||
|
packet.write(Type.ITEM, new Item(item, (byte) 1, (short) 0, null));
|
||||||
|
try {
|
||||||
|
packet.send();
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
map(Protocol1_9TO1_8.METADATA_LIST);
|
map(Protocol1_9TO1_8.METADATA_LIST);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user