Typo dissassembleDrive

This commit is contained in:
thatsIch 2014-09-21 02:44:52 +02:00
parent 1b51056701
commit d514b6dccd

View file

@ -190,7 +190,7 @@ public class ItemBasicStorageCell extends AEBaseItem implements IStorageCell, II
return true;
}
private boolean dissassembleDrive(ItemStack stack, World world, EntityPlayer player)
private boolean disassembleDrive(ItemStack stack, World world, EntityPlayer player)
{
if ( player.isSneaking() )
{
@ -228,14 +228,14 @@ public class ItemBasicStorageCell extends AEBaseItem implements IStorageCell, II
@Override
public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player)
{
dissassembleDrive( stack, world, player );
disassembleDrive( stack, world, player );
return stack;
}
@Override
public boolean onItemUseFirst(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ)
{
return dissassembleDrive( stack, world, player );
return disassembleDrive( stack, world, player );
}
@Override