Encoder Texture Update

This commit is contained in:
Henry Mao 2013-01-06 02:22:42 +08:00
parent 25c417322e
commit cb22292c9a
7 changed files with 8 additions and 7 deletions

View file

@ -1 +1 @@
43
44

View file

@ -38,4 +38,5 @@ Minecraft 1.4.5
* AssemblyLine_v0.2.1.40.jar AssemblyLine_v0.2.1.40_api.zip
@ AssemblyLine_v0.2.2.41.jar AssemblyLine_v0.2.2.41_api.zip
@ AssemblyLine_v0.2.2.42.jar AssemblyLine_v0.2.2.42_api.zip
* AssemblyLine_v0.2.2.43.jar AssemblyLine_v0.2.2.43_api.zip
@ AssemblyLine_v0.2.2.43.jar AssemblyLine_v0.2.2.43_api.zip
* AssemblyLine_v0.2.2.44.jar AssemblyLine_v0.2.2.44_api.zip

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View file

@ -140,7 +140,7 @@ public class GuiEncoder extends GuiContainer implements IInventoryWatcher
{
glColor4f(1, 1, 1, 1);
glDisable(GL_LIGHTING);
this.fontRenderer.drawString(TranslationHelper.getLocal("tile.encoder.name"), 68, 6 + ContainerEncoder.Y_OFFSET, 4210752);
this.fontRenderer.drawString(TranslationHelper.getLocal("tile.encoder.name"), 68, 8 + ContainerEncoder.Y_OFFSET, 4210752);
this.fontRenderer.drawString("Disk:", 56, 28 + ContainerEncoder.Y_OFFSET, 4210752);
// render page up and page down buttons

View file

@ -85,10 +85,10 @@ public class AssemblyLine
blockConveyorBelt = new BlockConveyorBelt(CONFIGURATION.getBlock("Conveyor Belt", BLOCK_ID_PREFIX).getInt());
blockManipulator = new BlockManipulator(CONFIGURATION.getBlock("Manipulator", BLOCK_ID_PREFIX + 1).getInt());
blockCrate = new BlockCrate(CONFIGURATION.getBlock("Crate", BLOCK_ID_PREFIX + 3).getInt(), 0);
blockImprinter = new BlockImprinter(CONFIGURATION.getBlock("Imprinter", BLOCK_ID_PREFIX + 4).getInt(), 0);
blockImprinter = new BlockImprinter(CONFIGURATION.getBlock("Imprinter", BLOCK_ID_PREFIX + 4).getInt(), 4);
blockDetector = new BlockDetector(CONFIGURATION.getBlock("Detector", BLOCK_ID_PREFIX + 5).getInt(), 1);
blockRejector = new BlockRejector(CONFIGURATION.getBlock("Rejector", BLOCK_ID_PREFIX + 6).getInt());
blockEncoder = new BlockEncoder(CONFIGURATION.getBlock("Programmer", BLOCK_ID_PREFIX + 7).getInt(), 0);
blockEncoder = new BlockEncoder(CONFIGURATION.getBlock("Encoder", BLOCK_ID_PREFIX + 7).getInt(), 7);
itemImprint = new ItemImprinter(CONFIGURATION.getBlock("Imprint", ITEM_ID_PREFIX).getInt());
itemDisk = new ItemDisk(CONFIGURATION.getBlock("Disk", ITEM_ID_PREFIX + 1).getInt());

View file

@ -14,7 +14,7 @@ public class BlockEncoder extends BlockMachine
public BlockEncoder(int id, int texture)
{
super(id, Material.wood);
this.blockIndexInTexture = 4;
this.blockIndexInTexture = texture;
this.setBlockName("encoder");
this.setCreativeTab(TabAssemblyLine.INSTANCE);
this.setTextureFile(AssemblyLine.BLOCK_TEXTURE_PATH);

View file

@ -13,7 +13,7 @@ public class BlockImprinter extends BlockMachine
public BlockImprinter(int id, int texture)
{
super(id, Material.wood);
this.blockIndexInTexture = 4;
this.blockIndexInTexture = texture;
this.setBlockName("imprinter");
this.setCreativeTab(TabAssemblyLine.INSTANCE);
this.setTextureFile(AssemblyLine.BLOCK_TEXTURE_PATH);