Advertisement
Guest User

Untitled

a guest
May 23rd, 2021
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.03 KB | None | 0 0
  1.  
  2. Executing Gradle task: build
  3. Build info: MCreator 2021.1.18117, forge-1.16.5, 64-bit, 8183 MB, Windows 10, JVM 1.8.0_275, JAVA_HOME: C:\Program Files\Pylo\MCreator\jdk
  4. > Task :compileJava
  5. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:25: error: cannot find symbol
  6. @Mod("anothertechmod")
  7. ^
  8. symbol: class Mod
  9. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:29: error: cannot find symbol
  10. public static final SimpleChannel PACKET_HANDLER = NetworkRegistry.newSimpleChannel(new ResourceLocation("anothertechmod", "anothertechmod"),
  11. ^
  12. symbol: class SimpleChannel
  13. location: class AnothertechmodMod
  14. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:40: error: cannot find symbol
  15. private void init(FMLCommonSetupEvent event) {
  16. ^
  17. symbol: class FMLCommonSetupEvent
  18. location: class AnothertechmodMod
  19. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:44: error: cannot find symbol
  20. public void clientLoad(FMLClientSetupEvent event) {
  21. ^
  22. symbol: class FMLClientSetupEvent
  23. location: class AnothertechmodMod
  24. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:49: error: package RegistryEvent does not exist
  25. public void registerBlocks(RegistryEvent.Register<Block> event) {
  26. ^
  27. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:49: error: cannot find symbol
  28. public void registerBlocks(RegistryEvent.Register<Block> event) {
  29. ^
  30. symbol: class Block
  31. location: class AnothertechmodMod
  32. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:54: error: package RegistryEvent does not exist
  33. public void registerItems(RegistryEvent.Register<Item> event) {
  34. ^
  35. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:54: error: cannot find symbol
  36. public void registerItems(RegistryEvent.Register<Item> event) {
  37. ^
  38. symbol: class Item
  39. location: class AnothertechmodMod
  40. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:59: error: package RegistryEvent does not exist
  41. public void registerEntities(RegistryEvent.Register<EntityType<?>> event) {
  42. ^
  43. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:59: error: cannot find symbol
  44. public void registerEntities(RegistryEvent.Register<EntityType<?>> event) {
  45. ^
  46. symbol: class EntityType
  47. location: class AnothertechmodMod
  48. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:64: error: package RegistryEvent does not exist
  49. public void registerEnchantments(RegistryEvent.Register<Enchantment> event) {
  50. ^
  51. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:64: error: cannot find symbol
  52. public void registerEnchantments(RegistryEvent.Register<Enchantment> event) {
  53. ^
  54. symbol: class Enchantment
  55. location: class AnothertechmodMod
  56. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:69: error: package RegistryEvent does not exist
  57. public void registerSounds(RegistryEvent.Register<net.minecraft.util.SoundEvent> event) {
  58. ^
  59. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:26: error: cannot find symbol
  60. public final List<Supplier<Block>> blocks = new ArrayList<>();
  61. ^
  62. symbol: class Block
  63. location: class AnothertechmodModElements
  64. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:27: error: cannot find symbol
  65. public final List<Supplier<Item>> items = new ArrayList<>();
  66. ^
  67. symbol: class Item
  68. location: class AnothertechmodModElements
  69. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:28: error: cannot find symbol
  70. public final List<Supplier<EntityType<?>>> entities = new ArrayList<>();
  71. ^
  72. symbol: class EntityType
  73. location: class AnothertechmodModElements
  74. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:29: error: cannot find symbol
  75. public final List<Supplier<Enchantment>> enchantments = new ArrayList<>();
  76. ^
  77. symbol: class Enchantment
  78. location: class AnothertechmodModElements
  79. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:30: error: cannot find symbol
  80. public static Map<ResourceLocation, net.minecraft.util.SoundEvent> sounds = new HashMap<>();
  81. ^
  82. symbol: class ResourceLocation
  83. location: class AnothertechmodModElements
  84. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:49: error: package RegistryEvent does not exist
  85. public void registerSounds(RegistryEvent.Register<net.minecraft.util.SoundEvent> event) {
  86. ^
  87. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:54: error: cannot find symbol
  88. public <T> void addNetworkMessage(Class<T> messageType, BiConsumer<T, PacketBuffer> encoder, Function<PacketBuffer, T> decoder,
  89. ^
  90. symbol: class PacketBuffer
  91. location: class AnothertechmodModElements
  92. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:54: error: cannot find symbol
  93. public <T> void addNetworkMessage(Class<T> messageType, BiConsumer<T, PacketBuffer> encoder, Function<PacketBuffer, T> decoder,
  94. ^
  95. symbol: class PacketBuffer
  96. location: class AnothertechmodModElements
  97. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:55: error: package NetworkEvent does not exist
  98. BiConsumer<T, Supplier<NetworkEvent.Context>> messageConsumer) {
  99. ^
  100. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:64: error: cannot find symbol
  101. public List<Supplier<Block>> getBlocks() {
  102. ^
  103. symbol: class Block
  104. location: class AnothertechmodModElements
  105. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:68: error: cannot find symbol
  106. public List<Supplier<Item>> getItems() {
  107. ^
  108. symbol: class Item
  109. location: class AnothertechmodModElements
  110. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:72: error: cannot find symbol
  111. public List<Supplier<EntityType<?>>> getEntities() {
  112. ^
  113. symbol: class EntityType
  114. location: class AnothertechmodModElements
  115. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:76: error: cannot find symbol
  116. public List<Supplier<Enchantment>> getEnchantments() {
  117. ^
  118. symbol: class Enchantment
  119. location: class AnothertechmodModElements
  120. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:93: error: cannot find symbol
  121. public void init(FMLCommonSetupEvent event) {
  122. ^
  123. symbol: class FMLCommonSetupEvent
  124. location: class ModElement
  125. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:96: error: cannot find symbol
  126. public void serverLoad(FMLServerStartingEvent event) {
  127. ^
  128. symbol: class FMLServerStartingEvent
  129. location: class ModElement
  130. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:100: error: cannot find symbol
  131. public void clientLoad(FMLClientSetupEvent event) {
  132. ^
  133. symbol: class FMLClientSetupEvent
  134. location: class ModElement
  135. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:79: error: cannot find symbol
  136. public void serverLoad(FMLServerStartingEvent event) {
  137. ^
  138. symbol: class FMLServerStartingEvent
  139. location: class AnothertechmodModFMLBusEvents
  140. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:48: error: cannot find symbol
  141. @SubscribeEvent
  142. ^
  143. symbol: class SubscribeEvent
  144. location: class AnothertechmodMod
  145. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:53: error: cannot find symbol
  146. @SubscribeEvent
  147. ^
  148. symbol: class SubscribeEvent
  149. location: class AnothertechmodMod
  150. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:58: error: cannot find symbol
  151. @SubscribeEvent
  152. ^
  153. symbol: class SubscribeEvent
  154. location: class AnothertechmodMod
  155. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:63: error: cannot find symbol
  156. @SubscribeEvent
  157. ^
  158. symbol: class SubscribeEvent
  159. location: class AnothertechmodMod
  160. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:68: error: cannot find symbol
  161. @SubscribeEvent
  162. ^
  163. symbol: class SubscribeEvent
  164. location: class AnothertechmodMod
  165. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:99: error: cannot find symbol
  166. @OnlyIn(Dist.CLIENT)
  167. ^
  168. symbol: class OnlyIn
  169. location: class ModElement
  170. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:78: error: cannot find symbol
  171. @SubscribeEvent
  172. ^
  173. symbol: class SubscribeEvent
  174. location: class AnothertechmodModFMLBusEvents
  175. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:29: error: cannot find symbol
  176. public static final SimpleChannel PACKET_HANDLER = NetworkRegistry.newSimpleChannel(new ResourceLocation("anothertechmod", "anothertechmod"),
  177. ^
  178. symbol: class ResourceLocation
  179. location: class AnothertechmodMod
  180. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:29: error: cannot find symbol
  181. public static final SimpleChannel PACKET_HANDLER = NetworkRegistry.newSimpleChannel(new ResourceLocation("anothertechmod", "anothertechmod"),
  182. ^
  183. symbol: variable NetworkRegistry
  184. location: class AnothertechmodMod
  185. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:34: error: cannot find symbol
  186. FMLJavaModLoadingContext.get().getModEventBus().register(this);
  187. ^
  188. symbol: variable FMLJavaModLoadingContext
  189. location: class AnothertechmodMod
  190. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:35: error: cannot find symbol
  191. FMLJavaModLoadingContext.get().getModEventBus().addListener(this::init);
  192. ^
  193. symbol: variable FMLJavaModLoadingContext
  194. location: class AnothertechmodMod
  195. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:36: error: cannot find symbol
  196. FMLJavaModLoadingContext.get().getModEventBus().addListener(this::clientLoad);
  197. ^
  198. symbol: variable FMLJavaModLoadingContext
  199. location: class AnothertechmodMod
  200. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:37: error: package MinecraftForge does not exist
  201. MinecraftForge.EVENT_BUS.register(new AnothertechmodModFMLBusEvents(this));
  202. ^
  203. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:50: error: cannot find symbol
  204. event.getRegistry().registerAll(elements.getBlocks().stream().map(Supplier::get).toArray(Block[]::new));
  205. ^
  206. symbol: class Block
  207. location: class AnothertechmodMod
  208. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:55: error: cannot find symbol
  209. event.getRegistry().registerAll(elements.getItems().stream().map(Supplier::get).toArray(Item[]::new));
  210. ^
  211. symbol: class Item
  212. location: class AnothertechmodMod
  213. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:60: error: cannot find symbol
  214. event.getRegistry().registerAll(elements.getEntities().stream().map(Supplier::get).toArray(EntityType[]::new));
  215. ^
  216. symbol: class EntityType
  217. location: class AnothertechmodMod
  218. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodMod.java:65: error: cannot find symbol
  219. event.getRegistry().registerAll(elements.getEnchantments().stream().map(Supplier::get).toArray(Enchantment[]::new));
  220. ^
  221. symbol: class Enchantment
  222. location: class AnothertechmodMod
  223. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:33: error: cannot find symbol
  224. ModFileScanData modFileInfo = ModList.get().getModFileById("anothertechmod").getFile().getScanResult();
  225. ^
  226. symbol: class ModFileScanData
  227. location: class AnothertechmodModElements
  228. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:34: error: package ModFileScanData does not exist
  229. Set<ModFileScanData.AnnotationData> annotations = modFileInfo.getAnnotations();
  230. ^
  231. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:35: error: package ModFileScanData does not exist
  232. for (ModFileScanData.AnnotationData annotationData : annotations) {
  233. ^
  234. C:\Users\LOGAN\MCreatorWorkspaces\anothertechmod\src\main\java\net\mcreator\anothertechmod\AnothertechmodModElements.java:50: error: cannot find symbol
  235. for (Map.Entry<ResourceLocation, net.minecraft.util.SoundEvent> sound : sounds.entrySet())
  236. ^
  237. symbol: class ResourceLocation
  238. location: class AnothertechmodModElements
  239. 51 errors
  240. > Task :compileJava FAILED
  241. FAILURE: Build failed with an exception.
  242. * What went wrong:
  243. Execution failed for task ':compileJava'.
  244. > Compilation failed; see the compiler error output for details.
  245. * Try:
  246. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
  247. * Get more help at https://help.gradle.org
  248. BUILD FAILED in 7s
  249. 1 actionable task: 1 executed
  250. BUILD FAILED
  251. Task completed in 10 seconds
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement