Advertisement
Guest User

Untitled

a guest
Aug 16th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. public FluidRecipe(String researchKey, FluidStack result, Object cat, AspectList tags)
  2. {
  3. this.recipeOutput = result;
  4. this.aspects = tags;
  5. this.key = researchKey;
  6. this.catalyst = cat;
  7. if ((cat instanceof String)) {
  8. this.catalyst = OreDictionary.getOres((String)cat);
  9. }
  10. String hc = researchKey + result.toString();
  11. for (Aspect tag : tags.getAspects()) {
  12. hc = hc + tag.getTag() + tags.getAmount(tag);
  13. }
  14. if ((cat instanceof ItemStack)) {
  15. hc = hc + ((ItemStack)cat).toString();
  16. } else if (((cat instanceof ArrayList)) && (((ArrayList)this.catalyst).size() > 0)) {
  17. for (ItemStack is : (ArrayList)this.catalyst) { //ERROR HERE
  18. hc = hc + is.toString();
  19. }
  20. }
  21. this.hash = hc.hashCode();
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement