mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Fix horse variant color
Our old method broke with the 1.17.10 update.
This commit is contained in:
parent
3d50155ee3
commit
20b183ddda
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ public class HorseEntity extends AbstractHorseEntity {
|
|||
@Override
|
||||
public void updateBedrockMetadata(EntityMetadata entityMetadata, GeyserSession session) {
|
||||
if (entityMetadata.getId() == 19) {
|
||||
metadata.put(EntityData.VARIANT, entityMetadata.getValue());
|
||||
metadata.put(EntityData.VARIANT, ((int) entityMetadata.getValue()) & 255);
|
||||
metadata.put(EntityData.MARK_VARIANT, (((int) entityMetadata.getValue()) >> 8) % 5);
|
||||
}
|
||||
super.updateBedrockMetadata(entityMetadata, session);
|
||||
|
|
Loading…
Reference in a new issue