We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd58c72 commit 0750990Copy full SHA for 0750990
core/src/main/java/org/geysermc/geyser/entity/EntityDefinitions.java
@@ -492,6 +492,7 @@ public final class EntityDefinitions {
492
EntityDefinition<AbstractArrowEntity> abstractArrowBase = EntityDefinition.inherited(AbstractArrowEntity::new, entityBase)
493
.addTranslator(MetadataType.BYTE, AbstractArrowEntity::setArrowFlags)
494
.addTranslator(null) // "Piercing level"
495
+ .addTranslator(null) // If the arrow is in the ground
496
.build();
497
ARROW = EntityDefinition.inherited(ArrowEntity::new, abstractArrowBase)
498
.type(EntityType.ARROW)
0 commit comments