Fixed incorrect leg placement on the preview when wide arms mode is selected

This commit is contained in:
Sollace 2022-12-11 01:09:16 +00:00
parent b480c94dfa
commit 0e26c376a3

View file

@ -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