From 1b26c2f4072e9736fbd1bff6ba48899c6e095fb0 Mon Sep 17 00:00:00 2001 From: Robert Seifert Date: Sat, 20 Apr 2013 08:24:57 -0400 Subject: [PATCH] cleanup --- AssemblyLineStandard.xml | 291 ------------------ .../machine/armbot/TileEntityArmbot.java | 2 +- .../common/machine/command/CommandBreak.java | 2 +- .../machine/command/CommandPowerTo.java | 2 +- 4 files changed, 3 insertions(+), 294 deletions(-) delete mode 100644 AssemblyLineStandard.xml diff --git a/AssemblyLineStandard.xml b/AssemblyLineStandard.xml deleted file mode 100644 index 3b1814924..000000000 --- a/AssemblyLineStandard.xml +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/minecraft/assemblyline/common/machine/armbot/TileEntityArmbot.java b/src/minecraft/assemblyline/common/machine/armbot/TileEntityArmbot.java index a8abcf349..216feef25 100644 --- a/src/minecraft/assemblyline/common/machine/armbot/TileEntityArmbot.java +++ b/src/minecraft/assemblyline/common/machine/armbot/TileEntityArmbot.java @@ -49,7 +49,7 @@ import cpw.mods.fml.common.FMLLog; import cpw.mods.fml.relauncher.Side; import dan200.computer.api.IComputerAccess; import dan200.computer.api.IPeripheral; -import dark.helpers.ItemFindingHelper; +import dark.library.helpers.ItemFindingHelper; public class TileEntityArmbot extends TileEntityAssemblyNetwork implements IMultiBlock, IInventory, IPacketReceiver, IElectricityStorage, IArmbot, IPeripheral { diff --git a/src/minecraft/assemblyline/common/machine/command/CommandBreak.java b/src/minecraft/assemblyline/common/machine/command/CommandBreak.java index bc05dce10..9c5614046 100644 --- a/src/minecraft/assemblyline/common/machine/command/CommandBreak.java +++ b/src/minecraft/assemblyline/common/machine/command/CommandBreak.java @@ -6,7 +6,7 @@ import net.minecraft.block.Block; import net.minecraft.entity.item.EntityItem; import net.minecraft.item.ItemStack; import universalelectricity.core.vector.Vector3; -import dark.helpers.ItemFindingHelper; +import dark.library.helpers.ItemFindingHelper; /** * Used by arms to break a specific block in a position. diff --git a/src/minecraft/assemblyline/common/machine/command/CommandPowerTo.java b/src/minecraft/assemblyline/common/machine/command/CommandPowerTo.java index eaeb28e03..2dbdd904b 100644 --- a/src/minecraft/assemblyline/common/machine/command/CommandPowerTo.java +++ b/src/minecraft/assemblyline/common/machine/command/CommandPowerTo.java @@ -9,7 +9,7 @@ import net.minecraft.nbt.NBTTagCompound; import net.minecraft.tileentity.TileEntity; import net.minecraftforge.common.ForgeDirection; import universalelectricity.core.vector.Vector3; -import dark.helpers.ItemFindingHelper; +import dark.library.helpers.ItemFindingHelper; public class CommandPowerTo extends Command {