Advertisement
Guest User

Untitled

a guest
Dec 19th, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. >E:\Downloads\MCreator\forge\build\sources\java\mod\mcreator\TestEnvironmentMod.java:279: error: method load in class mcreator_test cannot be applied to given types;
  2. >mcreator_29.load();
  3. > ^
  4. > required: FMLInitializationEvent
  5. > found: no arguments
  6. > reason: actual and formal argument lists differ in length
  7. >E:\Downloads\MCreator\forge\build\sources\java\mod\mcreator\mcreator_test.java:105: error: cannot find symbol
  8. >chestcontents.addItem(new WeightedRandomChestContent(Item.dyePowder, 3, 4, 6, 10)); // 4-6 cocoa beans
  9. > ^
  10. > symbol: variable dyePowder
  11. > location: class Item
  12. >E:\Downloads\MCreator\forge\build\sources\java\mod\mcreator\mcreator_test.java:106: error: cannot find symbol
  13. >chestcontents.addItem(new WeightedRandomChestContent(new ItemStack(Block.cloth, 1, 15), 2, 3, 20)); // 2-3 black wool
  14. > ^
  15. > symbol: variable cloth
  16. > location: class Block
  17. >E:\Downloads\MCreator\forge\build\sources\java\mod\mcreator\mcreator_test.java:108: error: cannot find symbol
  18. >ItemStack itemStack = new ItemStack(Item.shovelIron);
  19. > ^
  20. > symbol: variable shovelIron
  21. > location: class Item
  22. >E:\Downloads\MCreator\forge\build\sources\java\mod\mcreator\mcreator_test.java:276: error: cannot find symbol
  23. >TileEntity te = world.getBlockTileEntity(i, j, k);
  24. > ^
  25. > symbol: method getBlockTileEntity(int,int,int)
  26. > location: variable world of type World
  27. >E:\Downloads\MCreator\forge\build\sources\java\mod\mcreator\mcreator_test.java:280: error: method generateChestContents in class WeightedRandomChestContent cannot be applied to given types;
  28. >:compileJava FAILED
  29. >WeightedRandomChestContent.generateChestContents(random, info.getItems(random), te, info.getCount(random));
  30. > ^
  31. > required: Random,WeightedRandomChestContent[],IInventory,int
  32. > found: Random,WeightedRandomChestContent[],TileEntity,int
  33. > reason: actual argument TileEntity cannot be converted to IInventory by method invocation conversion
  34. >6 errors
  35. >FAILURE: Build failed with an exception.
  36. >* What went wrong:
  37. >Execution failed for task ':compileJava'.
  38. >> Compilation failed; see the compiler error output for details.
  39. >* Try:
  40. >Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement