Merge pull request #198 from thatsIch/containeritem
Replaced all instances of hasContainerItem with its ItemStack version when it had @Override
This commit is contained in:
commit
b68e94cb0c
3 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@ public class ItemCraftingStorage extends AEBaseItemBlock
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean hasContainerItem()
|
||||
public boolean hasContainerItem(ItemStack stack)
|
||||
{
|
||||
return AEConfig.instance.isFeatureEnabled( AEFeature.enableDisassemblyCrafting );
|
||||
}
|
||||
|
|
|
@ -239,7 +239,7 @@ public class ItemBasicStorageCell extends AEBaseItem implements IStorageCell, II
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean hasContainerItem()
|
||||
public boolean hasContainerItem(ItemStack stack)
|
||||
{
|
||||
return AEConfig.instance.isFeatureEnabled( AEFeature.enableDisassemblyCrafting );
|
||||
}
|
||||
|
|
|
@ -45,7 +45,7 @@ public class ToolQuartzCuttingKnife extends AEBaseItem implements IGuiItem
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean hasContainerItem()
|
||||
public boolean hasContainerItem(ItemStack stack)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue