mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Fix null potion type message in console (Addresses #227)
This commit is contained in:
parent
5222232e72
commit
03e11df58b
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ public enum EntityType {
|
||||||
PAINTING(PaintingEntity.class, 83, 0f),
|
PAINTING(PaintingEntity.class, 83, 0f),
|
||||||
MINECART(MinecartEntity.class, 84, 0f),
|
MINECART(MinecartEntity.class, 84, 0f),
|
||||||
FIREBALL(ItemedFireballEntity.class, 85, 0f),
|
FIREBALL(ItemedFireballEntity.class, 85, 0f),
|
||||||
SPLASH_POTION(ThrowableEntity.class, 86, 0f),
|
POTION(ThrowableEntity.class, 86, 0f),
|
||||||
ENDER_PEARL(ThrowableEntity.class, 87, 0f),
|
ENDER_PEARL(ThrowableEntity.class, 87, 0f),
|
||||||
LEASH_KNOT(Entity.class, 88, 0f),
|
LEASH_KNOT(Entity.class, 88, 0f),
|
||||||
WITHER_SKULL(Entity.class, 89, 0f),
|
WITHER_SKULL(Entity.class, 89, 0f),
|
||||||
|
|
Loading…
Reference in a new issue