Skip to content

Commit 0750990

Browse files
Fix abstract arrow entity metadata (#5149)
1 parent fd58c72 commit 0750990

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

core/src/main/java/org/geysermc/geyser/entity/EntityDefinitions.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -492,6 +492,7 @@ public final class EntityDefinitions {
492492
EntityDefinition<AbstractArrowEntity> abstractArrowBase = EntityDefinition.inherited(AbstractArrowEntity::new, entityBase)
493493
.addTranslator(MetadataType.BYTE, AbstractArrowEntity::setArrowFlags)
494494
.addTranslator(null) // "Piercing level"
495+
.addTranslator(null) // If the arrow is in the ground
495496
.build();
496497
ARROW = EntityDefinition.inherited(ArrowEntity::new, abstractArrowBase)
497498
.type(EntityType.ARROW)

0 commit comments

Comments
 (0)