Merge branch 'master' of github.com:mhahn1976/MinecraftForge into sometweaks

This commit is contained in:
Christian 2013-09-05 08:26:11 -04:00
commit 8c2e171a16
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public class ItemFluidContainer extends Item implements IFluidContainerItem
return 0;
}
int filled = capacity - resource.amount;
int filled = capacity - stack.amount;
if (resource.amount < filled)
{
stack.amount += resource.amount;