mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 16:24:23 +01:00
Fixed model attributes being copied in the wrong direction. O.O
This commit is contained in:
parent
9f9b3e5a2a
commit
1c8126215e
1 changed files with 2 additions and 2 deletions
|
@ -92,8 +92,8 @@ public abstract class ClientPonyModel<T extends LivingEntity> extends PlayerEnti
|
||||||
super.setAttributes(model);
|
super.setAttributes(model);
|
||||||
|
|
||||||
if (model instanceof ClientPonyModel) {
|
if (model instanceof ClientPonyModel) {
|
||||||
attributes = ((ClientPonyModel<T>)model).attributes;
|
((ClientPonyModel<T>)model).attributes = attributes;
|
||||||
metadata = ((ClientPonyModel<T>)model).metadata;
|
((ClientPonyModel<T>)model).metadata = metadata;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue