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:
Anon 2023-03-23 23:41:41 +01:00
parent 2e55a6bc85
commit 1a22002bde
11 changed files with 1575 additions and 531 deletions

View file

@ -0,0 +1,8 @@
using System.Collections.Generic;
namespace MinecraftClient.Mapping;
public abstract class EntityMetadataPalette
{
public abstract Dictionary<int, EntityMetaDataType> GetEntityMetadataMappingsList();
}