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
tile.crate.name=Crate
tile.conveyorBelt.name=Conveyor Belt
tile.stamper.name=Stamper
tile.imprinter.name=Imprinter
tile.engineerTable.name=Engineer's Table
tile.detector.name=Detector
tile.armbot.name=Armbot

View file

@ -46,7 +46,7 @@ public class AssemblyLine
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";

View file

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

View file

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

View file

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