Fixed a minor bug with the Minecart Dictionary.

This commit is contained in:
CovertJaguar 2012-03-09 17:10:50 -08:00
parent 7db6897fa3
commit 3847292ef7
1 changed files with 1 additions and 5 deletions

View File

@ -781,11 +781,7 @@ public class MinecraftForge
*/
public static ItemStack getItemForCart(EntityMinecart cart)
{
if (cart.getClass() == EntityMinecart.class)
{
return getItemForCart(cart.getClass(), cart.getMinecartType());
}
return getItemForCart(cart.getClass(), 0);
return getItemForCart(cart.getClass(), cart.getMinecartType());
}
/**