The 48, 8

This commit is contained in:
Sollace 2018-08-21 09:21:56 +02:00
parent f5b24c3258
commit 10f25a5b91
2 changed files with 2 additions and 4 deletions

View file

@ -62,8 +62,8 @@ public class ModelPonyArmor extends AbstractPonyModel implements IModelArmor {
bipedLeftArm = new PonyRenderer(this, 0, 16).flip(); bipedLeftArm = new PonyRenderer(this, 0, 16).flip();
bipedRightArm = new PonyRenderer(this, 0, 16); bipedRightArm = new PonyRenderer(this, 0, 16);
bipedLeftLeg = new PonyRenderer(this, 0, 16).flip(); bipedLeftLeg = new PonyRenderer(this, 48, 8).flip();
bipedRightLeg = new PonyRenderer(this, 0, 16); bipedRightLeg = new PonyRenderer(this, 48, 8);
} }
@Override @Override

View file

@ -1,7 +1,5 @@
package com.minelittlepony.render; package com.minelittlepony.render;
import static net.minecraft.client.renderer.GlStateManager.color;
import com.minelittlepony.util.coordinates.Color; import com.minelittlepony.util.coordinates.Color;
import net.minecraft.client.Minecraft; import net.minecraft.client.Minecraft;