Fixes #743 crash with plugs, fixes #942 builder integration, closes #319 BC 6 prep

This commit is contained in:
thatsIch
2014-12-21 19:08:05 +01:00
parent cdf949a557
commit e300bf93fd
31 changed files with 261 additions and 1692 deletions
@@ -224,15 +224,15 @@ public class AdaptorIInventory extends InventoryAdaptor
}
@Override
public ItemStack addItems( ItemStack itemsToAdd )
public ItemStack addItems( ItemStack toBeAdded )
{
return this.addItems( itemsToAdd, true );
return this.addItems( toBeAdded, true );
}
@Override
public ItemStack simulateAdd( ItemStack itemsToAdd )
public ItemStack simulateAdd( ItemStack toBeSimulated )
{
return this.addItems( itemsToAdd, false );
return this.addItems( toBeSimulated, false );
}
/**