mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-22 12:37:59 +01:00
Fix typo in stray resourcelocation path. (testures)
Also add metadata to setModelAttributes
This commit is contained in:
parent
de518e7830
commit
43d1edd030
2 changed files with 2 additions and 1 deletions
|
@ -59,7 +59,7 @@ public class PonyManager implements IResourceManagerReloadListener {
|
|||
public static final Map<SkeletonType, ResourceLocation> SKELETONS = Maps.immutableEnumMap(ImmutableMap.<SkeletonType, ResourceLocation> builder()
|
||||
.put(SkeletonType.NORMAL, SKELETON)
|
||||
.put(SkeletonType.WITHER, new ResourceLocation(NAMESPACE, "textures/entity/skeleton/skeleton_wither_pony.png"))
|
||||
.put(SkeletonType.STRAY, new ResourceLocation(NAMESPACE, "testures/entity/skeleton/stray_pony.png"))
|
||||
.put(SkeletonType.STRAY, new ResourceLocation(NAMESPACE, "textures/entity/skeleton/stray_pony.png"))
|
||||
.build());
|
||||
public static final ResourceLocation STEVE = new ResourceLocation(NAMESPACE, "textures/entity/steve_pony.png");
|
||||
public static final ResourceLocation ALEX = new ResourceLocation(NAMESPACE, "textures/entity/alex_pony.png");
|
||||
|
|
|
@ -345,6 +345,7 @@ public abstract class AbstractPonyModel extends ModelPlayer {
|
|||
AbstractPonyModel pony = (AbstractPonyModel) model;
|
||||
this.isFlying = pony.isFlying;
|
||||
this.isSleeping = pony.isSleeping;
|
||||
this.metadata = pony.metadata;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue