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);
} }

View file

@ -1,6 +1,6 @@
package assemblyline.common.machine.filter; package assemblyline.common.machine.filter;
public interface ISlotWatcher public interface ISlotWatcher
{ {
public void slotContentsChanged(); public void slotContentsChanged();
} }

View file

@ -1,25 +1,25 @@
package assemblyline.common.machine.filter; package assemblyline.common.machine.filter;
import net.minecraft.inventory.IInventory; import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot; import net.minecraft.inventory.Slot;
public class WatchedSlot extends Slot public class WatchedSlot extends Slot
{ {
ISlotWatcher slotWatcher; ISlotWatcher slotWatcher;
public WatchedSlot(IInventory inventory, int id, int xPosition, int yPosition, ISlotWatcher slotWatcher) public WatchedSlot(IInventory inventory, int id, int xPosition, int yPosition, ISlotWatcher slotWatcher)
{ {
super(inventory, id, xPosition, yPosition); super(inventory, id, xPosition, yPosition);
this.slotWatcher = slotWatcher; this.slotWatcher = slotWatcher;
} }
@Override @Override
public void onSlotChanged() public void onSlotChanged()
{ {
if (slotWatcher != null) if (slotWatcher != null)
{ {
slotWatcher.slotContentsChanged(); slotWatcher.slotContentsChanged();
} }
} }
} }