Fixed gearshaft adding an extra subtype into the creative menu

This commit is contained in:
Robert S 2014-10-15 13:31:21 -04:00
parent e0f3540789
commit c814eda972

View file

@ -33,7 +33,7 @@ class ItemGearShaft extends JItemMultiPart with IHighlight
override def getSubItems(itemID: Item, tab: CreativeTabs, listToAddTo: List[_])
{
for (i <- 0 to 3)
for (i <- 0 until 3)
{
listToAddTo.add(new ItemStack(itemID, 1, i))
}