Skip to content

Commit

Permalink
Merge pull request MinecraftForge#568 from hitchh1k3r/master
Browse files Browse the repository at this point in the history
Furnace XP bug fix (fixed)
  • Loading branch information
LexManos committed May 14, 2013
2 parents ed5dc83 + fecb4dc commit 7e70283
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
+ public void addSmelting(int itemID, int metadata, ItemStack itemstack, float experience)
+ {
+ metaSmeltingList.put(Arrays.asList(itemID, metadata), itemstack);
+ metaExperience.put(Arrays.asList(itemID, metadata), experience);
+ metaExperience.put(Arrays.asList(itemstack.itemID, itemstack.getItemDamage()), experience);
+ }
+
+ /**
Expand Down

0 comments on commit 7e70283

Please sign in to comment.