Err too much.

This commit is contained in:
AlgorithmX2
2014-01-20 10:41:37 -06:00
parent 5652ec30ec
commit 834e9c04c5
159 changed files with 7953 additions and 1541 deletions
+14 -1
View File
@@ -22,6 +22,7 @@ import appeng.api.parts.IPart;
import appeng.api.parts.IPartCollsionHelper;
import appeng.api.parts.IPartHost;
import appeng.api.parts.IPartRenderHelper;
import appeng.api.parts.PartItemStack;
public class PartCableAnchor implements IPart
{
@@ -65,7 +66,7 @@ public class PartCableAnchor implements IPart
}
@Override
public ItemStack getItemStack(boolean wrenched)
public ItemStack getItemStack(PartItemStack wrenched)
{
return is;
}
@@ -195,4 +196,16 @@ public class PartCableAnchor implements IPart
{
return mySide.offsetY == 0;
}
@Override
public boolean onShiftActivate(EntityPlayer player, Vec3 pos)
{
return false;
}
@Override
public void onPlacement(EntityPlayer player, ItemStack held, ForgeDirection side)
{
}
}