Merge pull request #2394 from iLexiconn/master

Fixed makeItemStack ignoring stackSize
This commit is contained in:
LexManos 2016-01-21 13:00:34 -08:00
commit be8eb484d1
1 changed files with 1 additions and 1 deletions

View File

@ -569,7 +569,7 @@ public class GameRegistry
FMLLog.getLogger().log(Level.TRACE, "Unable to find item with name {}", itemName);
return null;
}
ItemStack is = new ItemStack(item, 1, meta);
ItemStack is = new ItemStack(item, stackSize, meta);
if (!Strings.isNullOrEmpty(nbtString))
{
NBTBase nbttag = null;