mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-11-23 15:26:37 +01:00
Fix cat scale :upside_down:
This commit is contained in:
parent
139167d090
commit
aba279fd1a
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ public class CatEntity extends TameableEntity {
|
|||
public void updateBedrockMetadata(EntityMetadata entityMetadata, GeyserSession session) {
|
||||
super.updateBedrockMetadata(entityMetadata, session);
|
||||
if (entityMetadata.getId() == 16) {
|
||||
metadata.put(EntityData.SCALE, (boolean) entityMetadata.getValue() ? 0.8f : 0.4f);
|
||||
metadata.put(EntityData.SCALE, (boolean) entityMetadata.getValue() ? 0.4f : 0.8f);
|
||||
} else if (entityMetadata.getId() == 17) {
|
||||
// Update collar color if tamed
|
||||
if (metadata.getFlags().getFlag(EntityFlag.TAMED)) {
|
||||
|
|
Loading…
Reference in a new issue