mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Fixed entity metadata, fixed a crash with Hurt Data packet, fixed a crash when someone flew by with elyra, added Entity Metadata Palettes (not used yet, requires further work)
This commit is contained in:
parent
2e55a6bc85
commit
1a22002bde
11 changed files with 1575 additions and 531 deletions
33
MinecraftClient/Mapping/EntityMetaDataType.cs
Normal file
33
MinecraftClient/Mapping/EntityMetaDataType.cs
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
namespace MinecraftClient.Mapping;
|
||||
|
||||
public enum EntityMetaDataType
|
||||
{
|
||||
Byte,
|
||||
VarInt,
|
||||
VarLong,
|
||||
Float,
|
||||
String,
|
||||
Chat,
|
||||
OptionalChat,
|
||||
Slot,
|
||||
Boolean,
|
||||
Rotation,
|
||||
Position,
|
||||
OptionalPosition,
|
||||
Direction,
|
||||
OptionalUuid,
|
||||
BlockId,
|
||||
OptionalBlockId,
|
||||
Nbt,
|
||||
Particle,
|
||||
VillagerData,
|
||||
OptionalVarInt,
|
||||
Pose,
|
||||
CatVariant,
|
||||
FrogVariant,
|
||||
OptionalGlobalPosition,
|
||||
PaintingVariant,
|
||||
SnifferState,
|
||||
Vector3,
|
||||
Quaternion
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue