We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 62f9ef7 + 50ea5ea commit fd4f683Copy full SHA for fd4f683
core/src/main/java/org/geysermc/geyser/entity/type/living/ArmorStandEntity.java
@@ -167,6 +167,7 @@ public void setArmorStandFlags(ByteEntityMetadata entityMetadata) {
167
// But if given a resource pack, then we can use these values to control armor stand visual properties
168
setFlag(EntityFlag.ANGRY, (xd & 0x04) != 0x04); // Has arms
169
setFlag(EntityFlag.ADMIRING, (xd & 0x08) == 0x08); // Has no baseplate
170
+ setFlag(EntityFlag.BABY, isSmall); // Is small (for setting head scale)
171
}
172
173
public void setHeadRotation(EntityMetadata<Vector3f, ?> entityMetadata) {
0 commit comments