Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Noah167

Members
  • Joined

  • Last visited

  1. So I attempted to make a custom Leaves Block, everything works, except that the hardness, no matter what I do decides to stay at the same hardness as a grass block instead of any leaves. Why cant I change it? My full ModBlocks file (Leaf is LEAVES_ROWAN) package net.darealboy.magic.block; import net.darealboy.magic.Magic; import net.darealboy.magic.block.custom.ModFlammableRotatedPillarBlock; import net.darealboy.magic.item.ModCreativeModeTab; import net.darealboy.magic.item.ModItems; import net.darealboy.magic.world.feature.tree.RowanTreeGrower; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.CreativeModeTab; import net.minecraft.world.item.Item; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.block.*; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.material.Material; import net.minecraftforge.eventbus.api.IEventBus; import net.minecraftforge.registries.DeferredRegister; import net.minecraftforge.registries.ForgeRegistries; import net.minecraftforge.registries.RegistryObject; import java.util.function.Supplier; public class ModBlocks { public static final DeferredRegister<Block> BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, Magic.MOD_ID); //Blocks public static final RegistryObject<Block> ALTAR_BLOCK = registerBlock("altar_block", () -> new Block(BlockBehaviour.Properties.of(Material.STONE).strength(1.5f).requiresCorrectToolForDrops()), ModCreativeModeTab.MAGIC_TAB); /* ROWAN_WOODS------------------------------------------------------------------------------------------------------------------------------------------------------------------------ / ROWAN_WOODS------------------------------------------------------------------------------------------------------------------------------------------------------------------------ / ROWAN_WOODS------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */ public static final RegistryObject<Block> LOG_ROWAN = registerBlock("log_rowan", () -> new ModFlammableRotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.OAK_LOG) .requiresCorrectToolForDrops()), ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> WOOD_ROWAN = registerBlock("wood_rowan", () -> new ModFlammableRotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.OAK_WOOD) .requiresCorrectToolForDrops()), ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> STRIPPED_LOG_ROWAN = registerBlock("stripped_log_rowan", () -> new ModFlammableRotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.STRIPPED_OAK_LOG) .requiresCorrectToolForDrops()), ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> STRIPPED_WOOD_ROWAN = registerBlock("stripped_wood_rowan", () -> new ModFlammableRotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.STRIPPED_OAK_WOOD) .requiresCorrectToolForDrops()), ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> SAPLING_ROWAN = registerBlock("sapling_rowan", () -> new SaplingBlock(new RowanTreeGrower(), BlockBehaviour.Properties.copy(Blocks.OAK_SAPLING)), ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> PLANKS_ROWAN = registerBlock("planks_rowan", () -> new Block(BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS) .requiresCorrectToolForDrops()) { @Override public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return true; } @Override public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 5; } @Override public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 20; } }, ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> LEAVES_ROWAN = registerBlock("leaves_rowan", () -> new LeavesBlock(BlockBehaviour.Properties.copy(Blocks.OAK_LEAVES) .requiresCorrectToolForDrops()) { @Override public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return true; } @Override public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 30; } @Override public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 60; } }, ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> SLAB_ROWAN = registerBlock("slab_rowan", () -> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.OAK_SLAB) .requiresCorrectToolForDrops()) { @Override public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return true; } @Override public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 5; } @Override public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 20; } }, ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> FENCE_ROWAN = registerBlock("fence_rowan", () -> new FenceBlock(BlockBehaviour.Properties.copy(Blocks.OAK_FENCE) .requiresCorrectToolForDrops()) { @Override public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return true; } @Override public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 5; } @Override public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 20; } }, ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> STAIR_ROWAN = registerBlock("stair_rowan", () -> new StairBlock(() -> ModBlocks.PLANKS_ROWAN.get().defaultBlockState(), BlockBehaviour.Properties.copy(Blocks.OAK_STAIRS) .requiresCorrectToolForDrops()) { @Override public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return true; } @Override public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 5; } @Override public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 20; } }, ModCreativeModeTab.MAGIC_TAB); /* ROWAN_WOODS------------------------------------------------------------------------------------------------------------------------------------------------------------------------ / ROWAN_WOODS------------------------------------------------------------------------------------------------------------------------------------------------------------------------ / ROWAN_WOODS------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */ private static <T extends Block>RegistryObject<T> registerBlock(String name, Supplier<T> block, CreativeModeTab tab) { RegistryObject<T> toReturn = BLOCKS.register(name, block); registerBlockItem(name, toReturn, tab); return toReturn; } private static <T extends Block> RegistryObject<Item> registerBlockItem(String name, RegistryObject<T> block, CreativeModeTab tab) { return ModItems.ITEMS.register(name, () -> new BlockItem(block.get(), new Item.Properties().tab(tab))); } public static void register(IEventBus eventBus) { BLOCKS.register(eventBus); } }
  2. I got it to work, apparently it was the file name.
  3. It still doesnt seem to be working... { "type": "minecraft:crafting_shapeless", "group": "planks", "ingredients": [ { "tag": "magic:magicmod_customlogs_rowan" } ], "result": { "count": 4, "item": "magic:planks_rowan" } }
  4. I copied(and edited) oak_planks recipe file, but at the top where it says minecraft:recipe_shapeless, it says to change it. Error is first code, second is my whole recipe. Value should be one of: "minecraft:empty", "empty", "minecraft:entity", "entity", "minecraft:block", "block", "minecraft:chest", "chest", "minecraft:fishing", "fishing", "minecraft:gift", "gift", "minecraft:advancement_reward", "advancement_reward", "minecraft:barter", "barter", "minecraft:command", "command", "minecraft:selector", "selector", "minecraft:advancement_entity", "advancement_entity", "minecraft:generic", "generic" { "type": "minecraft:recipe:crafting_shapeless", "group": "planks", "ingredients": [ { "tag": "magic:magicmod_customlogs_rowan" } ], "result": { "count": 4, "item": "magic:planks_rowan" } }
  5. Forgot to mention, my leaf is the 7th block added in ROWAN_WOODS
  6. Should I create a seperate file for JUST leaves blocks, cuz my leaf is in ModBlocks rn. My whole ModBlocks package net.darealboy.magic.block; import net.darealboy.magic.Magic; import net.darealboy.magic.block.custom.ModFlammableRotatedPillarBlock; import net.darealboy.magic.item.ModCreativeModeTab; import net.darealboy.magic.item.ModItems; import net.darealboy.magic.world.feature.tree.RowanTreeGrower; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.CreativeModeTab; import net.minecraft.world.item.Item; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.LeavesBlock; import net.minecraft.world.level.block.SaplingBlock; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.material.Material; import net.minecraftforge.eventbus.api.IEventBus; import net.minecraftforge.registries.DeferredRegister; import net.minecraftforge.registries.ForgeRegistries; import net.minecraftforge.registries.RegistryObject; import java.util.function.Supplier; public class ModBlocks { public static final DeferredRegister<Block> BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, Magic.MOD_ID); //Blocks public static final RegistryObject<Block> ALTAR_BLOCK = registerBlock("altar_block", () -> new Block(BlockBehaviour.Properties.of(Material.STONE).strength(1.5f).requiresCorrectToolForDrops()), ModCreativeModeTab.MAGIC_TAB); /* ROWAN_WOODS------------------------------------------------------------------------------------------------------------------------------------------------------------------------ / ROWAN_WOODS------------------------------------------------------------------------------------------------------------------------------------------------------------------------ / ROWAN_WOODS------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */ public static final RegistryObject<Block> LOG_ROWAN = registerBlock("log_rowan", () -> new ModFlammableRotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.OAK_LOG) .requiresCorrectToolForDrops()), ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> WOOD_ROWAN = registerBlock("wood_rowan", () -> new ModFlammableRotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.OAK_WOOD) .requiresCorrectToolForDrops()), ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> STRIPPED_LOG_ROWAN = registerBlock("stripped_log_rowan", () -> new ModFlammableRotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.STRIPPED_OAK_LOG) .requiresCorrectToolForDrops()), ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> STRIPPED_WOOD_ROWAN = registerBlock("stripped_wood_rowan", () -> new ModFlammableRotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.STRIPPED_OAK_WOOD) .requiresCorrectToolForDrops()), ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> SAPLING_ROWAN = registerBlock("sapling_rowan", () -> new SaplingBlock(new RowanTreeGrower(), BlockBehaviour.Properties.copy(Blocks.OAK_SAPLING)), ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> PLANKS_ROWAN = registerBlock("planks_rowan", () -> new Block(BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS) .requiresCorrectToolForDrops()) { @Override public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return true; } @Override public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 5; } @Override public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 20; } }, ModCreativeModeTab.MAGIC_TAB); public static final RegistryObject<Block> LEAVES_ROWAN = registerBlock("leaves_rowan", () -> new LeavesBlock(BlockBehaviour.Properties.copy(Blocks.OAK_LEAVES) .requiresCorrectToolForDrops()) { @Override public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return true; } @Override public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 30; } @Override public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 60; } }, ModCreativeModeTab.MAGIC_TAB); /* ROWAN_WOODS------------------------------------------------------------------------------------------------------------------------------------------------------------------------ / ROWAN_WOODS------------------------------------------------------------------------------------------------------------------------------------------------------------------------ / ROWAN_WOODS------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */ private static <T extends Block>RegistryObject<T> registerBlock(String name, Supplier<T> block, CreativeModeTab tab) { RegistryObject<T> toReturn = BLOCKS.register(name, block); registerBlockItem(name, toReturn, tab); return toReturn; } private static <T extends Block> RegistryObject<Item> registerBlockItem(String name, RegistryObject<T> block, CreativeModeTab tab) { return ModItems.ITEMS.register(name, () -> new BlockItem(block.get(), new Item.Properties().tab(tab))); } public static void register(IEventBus eventBus) { BLOCKS.register(eventBus); } }
  7. So I attempted to make a custom Leaves Block, everything works, except that the hardness, no matter what I do decides to stay at the same hardness as a grass block instead of oak leaves. Code is below- The code for the leaf in ModBlocks - public static final RegistryObject<Block> LEAVES_ROWAN = registerBlock("leaves_rowan", () -> new LeavesBlock(BlockBehaviour.Properties.copy(Blocks.OAK_LEAVES) .requiresCorrectToolForDrops()) { @Override public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return true; } @Override public int getFlammability(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 30; } @Override public int getFireSpreadSpeed(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { return 60; } }, ModCreativeModeTab.MAGIC_TAB);
  8. oh wait nevermind I found it ><
  9. I am making a mod and I am trying to create a block that aces the direction of me(Like the wood) and I keep getting told to look in BlockChest. Where is BlockChest?
  10. Noah167 joined the community
  11. whenever I try to launch Minecraft from Eclipse I get this error Message, what do I do? - Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release [2022-07-28 17:50:39] [INFO ] Natives: C:\Users\Noah\Desktop\Workspace\forge-1.12.2-14.23.5.2860-mdk\build\natives [2022-07-28 17:50:39] [INFO ] Main Class: net.minecraft.launchwrapper.Launch [2022-07-28 17:50:39] [INFO ] Srg2Mcp: C:\Users\Noah\Desktop\Workspace\forge-1.12.2-14.23.5.2860-mdk\build\createSrgToMcp\output.srg [2022-07-28 17:50:39] [INFO ] Extra: [] [2022-07-28 17:50:39] [INFO ] Running with arguments: [--version, 1.12.2, --assetIndex, 1.12.2, --assetsDir, C:\Users\Noah\.gradle\caches\forge_gradle\assets, --accessToken, {REDACTED}, --userProperties, [], --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker] [17:50:39] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [17:50:39] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [17:50:39] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [17:50:39] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2860 for Minecraft 1.12.2 loading [17:50:39] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_341, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_341\jre [17:50:39] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected. Using default libraries directory. [17:50:39] [main/ERROR] [FML]: Full: C:\Users\Noah\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar [17:50:39] [main/ERROR] [FML]: Trimmed: c:/users/noah/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/ [17:50:40] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [17:50:40] [main/INFO] [FML]: Detected deobfuscated environment, loading log configs for colored console logs. 2022-07-28 17:50:40,300 main WARN Disabling terminal, you're running in an unsupported environment. [17:50:40] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin [17:50:40] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin [17:50:40] [main/INFO] [FML]: Searching C:\Users\Noah\Desktop\Workspace\Witchery\run\.\mods for mods [17:50:40] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [17:50:40] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [17:50:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [17:50:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [17:50:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:50:40] [main/ERROR] [FML]: An error occurred loading the deobfuscation map data java.io.FileNotFoundException: C:\Users\Noah\Desktop\Workspace\forge-1.12.2-14.23.5.2860-mdk\build\createSrgToMcp\output.srg (The system cannot find the path specified) at java.io.FileInputStream.open0(Native Method) ~[?:1.8.0_341] at java.io.FileInputStream.open(FileInputStream.java:195) ~[?:1.8.0_341] at java.io.FileInputStream.<init>(FileInputStream.java:138) ~[?:1.8.0_341] at com.google.common.io.Files$FileByteSource.openStream(Files.java:120) ~[guava-21.0.jar:?] at com.google.common.io.Files$FileByteSource.openStream(Files.java:110) ~[guava-21.0.jar:?] at com.google.common.io.ByteSource$AsCharSource.openStream(ByteSource.java:456) ~[guava-21.0.jar:?] at com.google.common.io.CharSource.readLines(CharSource.java:311) ~[guava-21.0.jar:?] at com.google.common.io.Files.readLines(Files.java:553) ~[guava-21.0.jar:?] at com.google.common.io.Files.readLines(Files.java:520) ~[guava-21.0.jar:?] at net.minecraftforge.fml.common.asm.transformers.deobf.FMLDeobfuscatingRemapper.setup(FMLDeobfuscatingRemapper.java:139) [forge-1.12.2-14.23.5.2860_mapped_snapshot_20171003-1.12-recomp.jar:?] at net.minecraftforge.fml.common.asm.FMLSanityChecker.injectData(FMLSanityChecker.java:187) [FMLSanityChecker.class:?] at net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper.injectIntoClassLoader(CoreModManager.java:164) [forge-1.12.2-14.23.5.2860_mapped_snapshot_20171003-1.12-recomp.jar:?] at net.minecraft.launchwrapper.Launch.launch(Launch.java:115) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_341] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_341] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_341] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_341] at net.minecraftforge.legacydev.Main.start(Main.java:86) [legacydev-0.2.3.1-fatjar.jar:0.2.3.1+4+372be23] at net.minecraftforge.legacydev.MainClient.main(MainClient.java:29) [legacydev-0.2.3.1-fatjar.jar:0.2.3.1+4+372be23] [17:50:40] [main/ERROR] [LaunchWrapper]: Unable to launch java.lang.RuntimeException: java.lang.NullPointerException at net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper.injectIntoClassLoader(CoreModManager.java:169) ~[forge-1.12.2-14.23.5.2860_mapped_snapshot_20171003-1.12-recomp.jar:?] at net.minecraft.launchwrapper.Launch.launch(Launch.java:115) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_341] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_341] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_341] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_341] at net.minecraftforge.legacydev.Main.start(Main.java:86) [legacydev-0.2.3.1-fatjar.jar:0.2.3.1+4+372be23] at net.minecraftforge.legacydev.MainClient.main(MainClient.java:29) [legacydev-0.2.3.1-fatjar.jar:0.2.3.1+4+372be23] Caused by: java.lang.NullPointerException at net.minecraftforge.fml.common.asm.transformers.deobf.FMLDeobfuscatingRemapper.setup(FMLDeobfuscatingRemapper.java:170) ~[forge-1.12.2-14.23.5.2860_mapped_snapshot_20171003-1.12-recomp.jar:?] at net.minecraftforge.fml.common.asm.FMLSanityChecker.injectData(FMLSanityChecker.java:187) ~[forge-1.12.2-14.23.5.2860_mapped_snapshot_20171003-1.12-recomp.jar:?] at net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper.injectIntoClassLoader(CoreModManager.java:164) ~[forge-1.12.2-14.23.5.2860_mapped_snapshot_20171003-1.12-recomp.jar:?] ... 8 more Exception in thread "main" [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1052]: java.lang.reflect.InvocationTargetException [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1052]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1052]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1052]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1052]: at java.lang.reflect.Method.invoke(Method.java:498) [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.legacydev.Main.start(Main.java:86) [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1052]: at net.minecraftforge.legacydev.MainClient.main(MainClient.java:29) [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1061]: Caused by: net.minecraftforge.fml.relauncher.FMLSecurityManager$ExitTrappedException [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1061]: at net.minecraftforge.fml.relauncher.FMLSecurityManager.checkPermission(FMLSecurityManager.java:49) [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.lang.SecurityManager.checkExit(SecurityManager.java:761) [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.lang.Runtime.exit(Runtime.java:107) [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1061]: at java.lang.System.exit(System.java:971) [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1061]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:138) [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1061]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [17:50:40] [main/INFO] [STDERR]: [java.lang.ThreadGroup:uncaughtException:1061]: ... 6 more

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.