ME Tunnel + Network Tool
This commit is contained in:
@@ -1,26 +0,0 @@
|
||||
package appeng.items.tools.powered;
|
||||
|
||||
import java.util.EnumSet;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
import appeng.core.features.AEFeature;
|
||||
import appeng.helpers.IGuiItem;
|
||||
import appeng.items.tools.powered.powersink.AEBasePoweredItem;
|
||||
|
||||
public class ToolNetworkTool extends AEBasePoweredItem implements IGuiItem
|
||||
{
|
||||
|
||||
public ToolNetworkTool() {
|
||||
super( ToolNetworkTool.class, null );
|
||||
setfeature( EnumSet.of( AEFeature.NetworkTool, AEFeature.PoweredTools ) );
|
||||
maxStoredPower = 100000;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object getGuiObject(ItemStack is)
|
||||
{
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -147,7 +147,7 @@ public class ToolPortableCell extends AEBasePoweredItem implements IStorageCell,
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object getGuiObject(ItemStack is)
|
||||
public Object getGuiObject(ItemStack is, World w, int x, int y, int z)
|
||||
{
|
||||
return new CellItemViewer( is );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user