Skip to content

Commit

Permalink
Forgot to update the render
Browse files Browse the repository at this point in the history
  • Loading branch information
IcarussOne committed Aug 17, 2024
1 parent bfcd94e commit f83d56b
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@

@SideOnly(Side.CLIENT)
public class RenderPrimalArrow extends RenderArrow<EntityPrimalArrow> {
public static final ResourceLocation TEXTURE_AIR = new ResourceLocation(CrimsonRevelations.MODID, "textures/entity/arrow/primal_arrow_air.png");
public static final ResourceLocation TEXTURE_EARTH = new ResourceLocation(CrimsonRevelations.MODID, "textures/entity/arrow/primal_arrow_earth.png");
public static final ResourceLocation TEXTURE_ENTROPY = new ResourceLocation(CrimsonRevelations.MODID, "textures/entity/arrow/primal_arrow_entropy.png");
public static final ResourceLocation TEXTURE_FIRE = new ResourceLocation(CrimsonRevelations.MODID, "textures/entity/arrow/primal_arrow_fire.png");
public static final ResourceLocation TEXTURE_ORDER = new ResourceLocation(CrimsonRevelations.MODID, "textures/entity/arrow/primal_arrow_order.png");
public static final ResourceLocation TEXTURE_WATER = new ResourceLocation(CrimsonRevelations.MODID, "textures/entity/arrow/primal_arrow_water.png");
public static final ResourceLocation TEXTURE_AER = new ResourceLocation(CrimsonRevelations.MODID, "textures/entity/arrow/arrow_aer.png");
public static final ResourceLocation TEXTURE_AQUA = new ResourceLocation(CrimsonRevelations.MODID, "textures/entity/arrow/arrow_aqua.png");
public static final ResourceLocation TEXTURE_IGNIS = new ResourceLocation(CrimsonRevelations.MODID, "textures/entity/arrow/arrow_ignis.png");
public static final ResourceLocation TEXTURE_ORDO = new ResourceLocation(CrimsonRevelations.MODID, "textures/entity/arrow/arrow_ordo.png");
public static final ResourceLocation TEXTURE_PERDITIO = new ResourceLocation(CrimsonRevelations.MODID, "textures/entity/arrow/arrow_perditio.png");
public static final ResourceLocation TEXTURE_TERRA = new ResourceLocation(CrimsonRevelations.MODID, "textures/entity/arrow/arrow_terra.png");

public RenderPrimalArrow(RenderManager renderManager) {
super(renderManager);
Expand All @@ -25,18 +25,18 @@ public RenderPrimalArrow(RenderManager renderManager) {
protected ResourceLocation getEntityTexture(EntityPrimalArrow entity) {
switch (entity.getArrowType()) {
case 5:
return TEXTURE_ENTROPY;
return TEXTURE_TERRA;
case 4:
return TEXTURE_ORDER;
return TEXTURE_PERDITIO;
case 3:
return TEXTURE_WATER;
return TEXTURE_ORDO;
case 2:
return TEXTURE_FIRE;
return TEXTURE_IGNIS;
case 1:
return TEXTURE_EARTH;
return TEXTURE_AQUA;
case 0:
default:
return TEXTURE_AIR;
return TEXTURE_AER;
}
}
}

0 comments on commit f83d56b

Please sign in to comment.