diff --git a/assets/hbm/sounds/weapon/ciwsFiringLoop.ogg b/assets/hbm/sounds/weapon/ciwsFiringLoop.ogg new file mode 100644 index 000000000..9fc0f5d9a Binary files /dev/null and b/assets/hbm/sounds/weapon/ciwsFiringLoop.ogg differ diff --git a/assets/hbm/textures/gui/n2Schematic.png b/assets/hbm/textures/gui/n2Schematic.png new file mode 100644 index 000000000..6cfad0e4d Binary files /dev/null and b/assets/hbm/textures/gui/n2Schematic.png differ diff --git a/assets/hbm/textures/gui/potions.png b/assets/hbm/textures/gui/potions.png index 8f076b78b..5133b4a25 100644 Binary files a/assets/hbm/textures/gui/potions.png and b/assets/hbm/textures/gui/potions.png differ diff --git a/assets/hbm/textures/items/pgc_mo8_backup.png b/assets/hbm/textures/items/pgc_mo8_backup.png new file mode 100644 index 000000000..1adb9f000 Binary files /dev/null and b/assets/hbm/textures/items/pgc_mo8_backup.png differ diff --git a/assets/hbm/textures/items/usb_mo8_backup.png b/assets/hbm/textures/items/usb_mo8_backup.png new file mode 100644 index 000000000..8077c724a Binary files /dev/null and b/assets/hbm/textures/items/usb_mo8_backup.png differ diff --git a/com/hbm/render/tileentity/RenderNukeMan.java b/com/hbm/render/tileentity/RenderNukeMan.java index c66393067..ce24538a8 100644 --- a/com/hbm/render/tileentity/RenderNukeMan.java +++ b/com/hbm/render/tileentity/RenderNukeMan.java @@ -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(); }