Updated language file for Imprinter
Changed version number to 0.2.0
This commit is contained in:
parent
95f27d5408
commit
6c0ad6cb20
7 changed files with 36 additions and 36 deletions
|
@ -1 +1 @@
|
|||
35
|
||||
37
|
|
@ -1 +1 @@
|
|||
0.1.9
|
||||
0.2.0
|
|
@ -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
|
||||
|
|
|
@ -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";
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue