N² gui texture, fatman rendering fix, new potion icons

This commit is contained in:
HbmMods 2018-03-26 00:06:57 +02:00
parent 2d2c1ff323
commit aac1c759f9
6 changed files with 3 additions and 0 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 898 B

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 457 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 B

View File

@ -28,6 +28,7 @@ public class RenderNukeMan extends TileEntitySpecialRenderer {
GL11.glPushMatrix();
GL11.glTranslated(x + 0.5D, y, z + 0.5D);
GL11.glEnable(GL11.GL_LIGHTING);
GL11.glDisable(GL11.GL_CULL_FACE);
switch(tileEntity.getBlockMetadata())
{
case 3:
@ -42,6 +43,8 @@ public class RenderNukeMan extends TileEntitySpecialRenderer {
bindTexture(manTexture);
manModel.renderAll();
GL11.glEnable(GL11.GL_LIGHTING);
GL11.glPopMatrix();
}