Skip to content

Commit

Permalink
Set baby if armor stand is small for OptionalPack (#3210)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kas-tle committed Aug 10, 2022
1 parent 8b57a7c commit 50ea5ea
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ public void setArmorStandFlags(ByteEntityMetadata entityMetadata) {
// But if given a resource pack, then we can use these values to control armor stand visual properties
setFlag(EntityFlag.ANGRY, (xd & 0x04) != 0x04); // Has arms
setFlag(EntityFlag.ADMIRING, (xd & 0x08) == 0x08); // Has no baseplate
setFlag(EntityFlag.BABY, isSmall); // Is small (for setting head scale)
}

public void setHeadRotation(EntityMetadata<Vector3f, ?> entityMetadata) {
Expand Down

0 comments on commit 50ea5ea

Please sign in to comment.