fix: particles

This commit is contained in:
Timo Ley 2022-12-10 22:04:25 +01:00
parent d945898e31
commit 4c1b25736b
3 changed files with 3 additions and 4 deletions

View File

@ -180,6 +180,6 @@ public class FXBeam extends EntityFX {
GL11.glPopMatrix();
tessellator.startDrawingQuads();
this.prevSize = size;
Minecraft.getMinecraft().renderEngine.bindTexture(new ResourceLocation("particles"));
Minecraft.getMinecraft().renderEngine.bindTexture(new ResourceLocation("textures/particle/particles.png"));
}
}

View File

@ -88,6 +88,6 @@ public class FXHologram extends EntityFX {
CalclaviaRenderHelper.disableBlending();
GL11.glPopMatrix();
tessellator.startDrawingQuads();
Minecraft.getMinecraft().renderEngine.bindTexture(new ResourceLocation("particles"));
Minecraft.getMinecraft().renderEngine.bindTexture(new ResourceLocation("textures/particle/particles.png"));
}
}

View File

@ -73,7 +73,6 @@ public class FXHologramMoving extends EntityFX {
CalclaviaRenderHelper.enableLighting();
GL11.glPopMatrix();
tessellator.startDrawingQuads();
Minecraft.getMinecraft().renderEngine.bindTexture(
new ResourceLocation("particles"));
Minecraft.getMinecraft().renderEngine.bindTexture(new ResourceLocation("textures/particle/particles.png"));
}
}