Updated language file for Imprinter

Changed version number to 0.2.0
This commit is contained in:
Brian Ricketts 2012-12-29 01:14:09 -06:00
parent 95f27d5408
commit 6c0ad6cb20
7 changed files with 36 additions and 36 deletions

View file

@ -1 +1 @@
35 37

View file

@ -1 +1 @@
0.1.9 0.2.0

View file

@ -7,7 +7,7 @@ assemblyline.gui.crafting=Crafting
# Blocks # Blocks
tile.crate.name=Crate tile.crate.name=Crate
tile.conveyorBelt.name=Conveyor Belt tile.conveyorBelt.name=Conveyor Belt
tile.stamper.name=Stamper tile.imprinter.name=Imprinter
tile.engineerTable.name=Engineer's Table tile.engineerTable.name=Engineer's Table
tile.detector.name=Detector tile.detector.name=Detector
tile.armbot.name=Armbot tile.armbot.name=Armbot

View file

@ -46,7 +46,7 @@ public class AssemblyLine
public static final String NAME = "Assembly Line"; public static final String NAME = "Assembly Line";
public static final String VERSION = "0.1.9"; public static final String VERSION = "0.2.0";
public static final String CHANNEL = "AssemblyLine"; public static final String CHANNEL = "AssemblyLine";

View file

@ -14,7 +14,7 @@ public class BlockImprinter extends BlockMachine
{ {
super(id, Material.wood); super(id, Material.wood);
this.blockIndexInTexture = 0; this.blockIndexInTexture = 0;
this.setBlockName("stamper"); this.setBlockName("imprinter");
this.setCreativeTab(UETab.INSTANCE); this.setCreativeTab(UETab.INSTANCE);
this.setTextureFile(AssemblyLine.BLOCK_TEXTURE_PATH); this.setTextureFile(AssemblyLine.BLOCK_TEXTURE_PATH);
} }