mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-22 12:37:59 +01:00
Fixed incorrect leg placement on the preview when wide arms mode is selected
This commit is contained in:
parent
b480c94dfa
commit
0e26c376a3
1 changed files with 3 additions and 0 deletions
|
@ -9,6 +9,8 @@ import com.minelittlepony.client.IPreviewModel;
|
|||
import com.minelittlepony.client.render.EquineRenderManager;
|
||||
import com.minelittlepony.hdskins.client.dummy.*;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* Dummy model used for the skin uploading screen.
|
||||
*/
|
||||
|
@ -16,6 +18,7 @@ class DummyPony extends DummyPlayer implements IPreviewModel, ModelAttributes.Sw
|
|||
|
||||
public DummyPony(ClientWorld world, PlayerSkins<?> textures) {
|
||||
super(world, textures);
|
||||
setUuid(UUID.randomUUID()); // uuid must be random so animations aren't linked between the two previews
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue