mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 08:14: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);
|
||||
|
||||
if (model instanceof ClientPonyModel) {
|
||||
attributes = ((ClientPonyModel<T>)model).attributes;
|
||||
metadata = ((ClientPonyModel<T>)model).metadata;
|
||||
((ClientPonyModel<T>)model).attributes = attributes;
|
||||
((ClientPonyModel<T>)model).metadata = metadata;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue