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.

Naranjo

Members
  • Joined

  • Last visited

Everything posted by Naranjo

  1. Ok, thanks a ton
  2. Ima commit flint lmao
  3. I said flight lmao
  4. When you right click with the item you gain the ability to fly like in creative mode, and if you right click again you lose the ability.
  5. The way I'm doing the flying code is with events, and I have this: package com.Naranjo.toolsofinsanitymod.events; import com.Naranjo.toolsofinsanitymod.ToI; import com.Naranjo.toolsofinsanitymod.items.ItemBase; import com.Naranjo.toolsofinsanitymod.util.RegistryHandler; import com.google.common.eventbus.Subscribe; import net.minecraft.entity.FlyingEntity; import net.minecraft.entity.LivingEntity; import net.minecraft.entity.player.PlayerAbilities; import net.minecraft.entity.player.PlayerEntity; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.client.event.ColorHandlerEvent; import net.minecraftforge.event.entity.living.LivingEvent; import net.minecraftforge.event.entity.player.PlayerInteractEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.common.Mod; @Mod.EventBusSubscriber(modid = ToI.MOD_ID, bus = Mod.EventBusSubscriber.Bus.FORGE, value = Dist.CLIENT) public class ModClientEvents { @SubscribeEvent public static void onJumpWithWitchBroom(PlayerInteractEvent.RightClickItem event) { PlayerEntity player = event.getPlayer(); if (player.getHeldItemMainhand().getItem() == RegistryHandler.NATEWITCHBROOM.get()) { player.abilities.allowFlying = true; ToI.LOGGER.info("Player tried to jump with Broom"); }; } } } How would I make it so I Right click or I switch to another slot in my hotbar I stop flying?
  6. Thanks a bunch!
  7. Hello, I am currently creating a mod and I need some help, if you want to help me out that is. I am new to Java, so please don't scold me for not knowing like the people in the discord server I'm in do. So basically i have an item that I want to be able to fly with on right click, and be able to summon 3 bats on left click. I have the item registered into my RegistryHandler already. If anyone could help me that would be greatly appreciated. Thank You!
  8. Also I'm sorry for posting it here I didn't notice it was in Support and Bug Reports
  9. Hello, I am currently creating a mod and I need some help, if you want to help me out that is. I am new to Java, so please don't scold me for not knowing like the people in the discord server I'm in do. So basically i have an item that I want to be able to fly with on right click, and be able to summon 3 bats on left click. I have the item registered into my RegistryHandeler already. If anyone could help me that would be greatly appreciated. Thank You!
  10. Here is the crash report ---- Minecraft Crash Report ---- // Uh... Did I do that? Time: 7/11/20 11:41 AM Description: Rendering overlay com.electronwill.nightconfig.core.io.ParsingException: Not enough data available at com.electronwill.nightconfig.core.io.ParsingException.notEnoughData(ParsingException.java:22) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.io.ReaderInput.directReadChar(ReaderInput.java:36) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.io.AbstractInput.readChar(AbstractInput.java:49) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.io.AbstractInput.readCharsUntil(AbstractInput.java:123) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.toml.TableParser.parseKey(TableParser.java:166) ~[toml-3.6.2.jar:?] {} at com.electronwill.nightconfig.toml.TableParser.parseDottedKey(TableParser.java:145) ~[toml-3.6.2.jar:?] {} at com.electronwill.nightconfig.toml.TableParser.parseNormal(TableParser.java:55) ~[toml-3.6.2.jar:?] {} at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:44) ~[toml-3.6.2.jar:?] {} at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:37) ~[toml-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:113) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:219) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:202) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.file.WriteSyncFileConfig.load(WriteSyncFileConfig.java:73) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.file.AutosaveCommentedFileConfig.load(AutosaveCommentedFileConfig.java:85) ~[core-3.6.2.jar:?] {} at net.minecraftforge.fml.config.ConfigFileTypeHandler.lambda$reader$1(ConfigFileTypeHandler.java:53) ~[?:?] {re:classloading} at net.minecraftforge.fml.config.ConfigFileTypeHandler$$Lambda$3605/882673206.apply(Unknown Source) ~[?:?] {} at net.minecraftforge.fml.config.ConfigTracker.openConfig(ConfigTracker.java:104) ~[?:?] {re:classloading} at net.minecraftforge.fml.config.ConfigTracker.lambda$loadConfigs$1(ConfigTracker.java:83) ~[?:?] {re:classloading} at net.minecraftforge.fml.config.ConfigTracker$$Lambda$3604/841353735.accept(Unknown Source) ~[?:?] {} at java.lang.Iterable.forEach(Iterable.java:75) ~[?:1.8.0_51] {} at java.util.Collections$SynchronizedCollection.forEach(Collections.java:2062) ~[?:1.8.0_51] {} at net.minecraftforge.fml.config.ConfigTracker.loadConfigs(ConfigTracker.java:83) ~[?:?] {re:classloading} at net.minecraftforge.fml.ModLoader.lambda$null$5(ModLoader.java:153) ~[?:?] {re:classloading} at net.minecraftforge.fml.ModLoader$$Lambda$3603/1662108087.run(Unknown Source) ~[?:?] {} at net.minecraftforge.fml.DistExecutor.unsafeRunWhenOn(DistExecutor.java:125) ~[?:?] {re:classloading} at net.minecraftforge.fml.DistExecutor.runWhenOn(DistExecutor.java:109) ~[?:?] {re:classloading} at net.minecraftforge.fml.ModLoader.loadMods(ModLoader.java:153) ~[?:?] {re:classloading} at net.minecraftforge.fml.client.ClientModLoader.lambda$startModLoading$6(ClientModLoader.java:119) ~[?:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraftforge.fml.client.ClientModLoader$$Lambda$3598/502469309.run(Unknown Source) ~[?:?] {} at net.minecraftforge.fml.client.ClientModLoader.lambda$createRunnableWithCatch$5(ClientModLoader.java:109) ~[?:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraftforge.fml.client.ClientModLoader$$Lambda$2761/266843824.run(Unknown Source) ~[?:?] {} at net.minecraftforge.fml.client.ClientModLoader.startModLoading(ClientModLoader.java:119) ~[?:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraftforge.fml.client.ClientModLoader.lambda$onreload$3(ClientModLoader.java:101) ~[?:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraftforge.fml.client.ClientModLoader$$Lambda$3592/1844941220.run(Unknown Source) ~[?:?] {} at net.minecraftforge.fml.client.ClientModLoader.lambda$createRunnableWithCatch$5(ClientModLoader.java:109) ~[?:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraftforge.fml.client.ClientModLoader$$Lambda$2761/266843824.run(Unknown Source) ~[?:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1618) ~[?:1.8.0_51] {} at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1610) ~[?:1.8.0_51] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) ~[?:1.8.0_51] {} at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) ~[?:1.8.0_51] {} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1689) ~[?:1.8.0_51] {} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157) ~[?:1.8.0_51] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Stacktrace: at com.electronwill.nightconfig.core.io.ParsingException.notEnoughData(ParsingException.java:22) at com.electronwill.nightconfig.core.io.ReaderInput.directReadChar(ReaderInput.java:36) at com.electronwill.nightconfig.core.io.AbstractInput.readChar(AbstractInput.java:49) at com.electronwill.nightconfig.core.io.AbstractInput.readCharsUntil(AbstractInput.java:123) at com.electronwill.nightconfig.toml.TableParser.parseKey(TableParser.java:166) at com.electronwill.nightconfig.toml.TableParser.parseDottedKey(TableParser.java:145) at com.electronwill.nightconfig.toml.TableParser.parseNormal(TableParser.java:55) at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:44) at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:37) at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:113) at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:219) at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:202) at com.electronwill.nightconfig.core.file.WriteSyncFileConfig.load(WriteSyncFileConfig.java:73) at com.electronwill.nightconfig.core.file.AutosaveCommentedFileConfig.load(AutosaveCommentedFileConfig.java:85) at net.minecraftforge.fml.config.ConfigFileTypeHandler.lambda$reader$1(ConfigFileTypeHandler.java:53) at net.minecraftforge.fml.config.ConfigFileTypeHandler$$Lambda$3605/882673206.apply(Unknown Source) at net.minecraftforge.fml.config.ConfigTracker.openConfig(ConfigTracker.java:104) at net.minecraftforge.fml.config.ConfigTracker.lambda$loadConfigs$1(ConfigTracker.java:83) at net.minecraftforge.fml.config.ConfigTracker$$Lambda$3604/841353735.accept(Unknown Source) at java.lang.Iterable.forEach(Iterable.java:75) at java.util.Collections$SynchronizedCollection.forEach(Collections.java:2062) at net.minecraftforge.fml.config.ConfigTracker.loadConfigs(ConfigTracker.java:83) at net.minecraftforge.fml.ModLoader.lambda$null$5(ModLoader.java:153) at net.minecraftforge.fml.ModLoader$$Lambda$3603/1662108087.run(Unknown Source) at net.minecraftforge.fml.DistExecutor.unsafeRunWhenOn(DistExecutor.java:125) at net.minecraftforge.fml.DistExecutor.runWhenOn(DistExecutor.java:109) at net.minecraftforge.fml.ModLoader.loadMods(ModLoader.java:153) -- Overlay render details -- Details: Overlay name: net.minecraft.client.gui.ResourceLoadProgressGui Stacktrace: at net.minecraft.client.renderer.GameRenderer.func_195458_a(GameRenderer.java:473) at net.minecraft.client.Minecraft.func_195542_b(Minecraft.java:950) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:581) at net.minecraft.client.main.Main.main(Main.java:184) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraftforge.fml.loading.FMLClientLaunchProvider.lambda$launchService$0(FMLClientLaunchProvider.java:51) at net.minecraftforge.fml.loading.FMLClientLaunchProvider$$Lambda$419/1081633119.call(Unknown Source) at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) at cpw.mods.modlauncher.Launcher.run(Launcher.java:81) at cpw.mods.modlauncher.Launcher.main(Launcher.java:65) -- System Details -- Details: Minecraft Version: 1.16.1 Minecraft Version ID: 1.16.1 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 7113450504 bytes (6783 MB) / 10737418240 bytes (10240 MB) up to 10737418240 bytes (10240 MB) CPUs: 4 JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx10G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M ModLauncher: 5.1.0+69+master.79f13f7 ModLauncher launch target: fmlclient ModLauncher naming: srg ModLauncher services: /eventbus-2.2.0-service.jar eventbus PLUGINSERVICE /forge-1.16.1-32.0.63.jar object_holder_definalize PLUGINSERVICE /forge-1.16.1-32.0.63.jar runtime_enum_extender PLUGINSERVICE /accesstransformers-2.1.3-shadowed.jar accesstransformer PLUGINSERVICE /forge-1.16.1-32.0.63.jar capability_inject_definalize PLUGINSERVICE /forge-1.16.1-32.0.63.jar runtimedistcleaner PLUGINSERVICE /forge-1.16.1-32.0.63.jar fml TRANSFORMATIONSERVICE FML: 32.0 Forge: net.minecraftforge:32.0.63 FML Language Providers: [email protected] minecraft@1 Mod List: forge-1.16.1-32.0.63-client.jar Minecraft {[email protected] COMMON_SETUP} useful_backpacks-1.16.1-1.11.0.68-SNAPSHOT.jar Useful Backpacks {[email protected] COMMON_SETUP} elevatorid-1.16.1-1.7.2.jar Elevator Mod {[email protected] COMMON_SETUP} TrashSlot_1.16.1-12.0.0.jar TrashSlot {[email protected] COMMON_SETUP} u_team_core-1.16.1-3.1.0.161-SNAPSHOT.jar U Team Core {[email protected] COMMON_SETUP} curiouselytra-FORGE-1.16.1-3.0.jar Curious Elytra {[email protected] COMMON_SETUP} jei-1.16.1-7.0.0.6.jar Just Enough Items {[email protected] COMMON_SETUP} longfallboots-1.5.0a.jar Long Fall Boots {[email protected] COMMON_SETUP} FpsReducer-mc1.16.1-1.16.jar FPS Reducer {[email protected] COMMON_SETUP} BetterThanMending-1.4.0.jar BetterThanMending {[email protected] COMMON_SETUP} caelus-FORGE-1.16.1-2.0-beta4.jar Caelus API {[email protected] COMMON_SETUP} forge-1.16.1-32.0.63-universal.jar Forge {[email protected] COMMON_SETUP} AppleSkin-mc1.16.1-forge-1.0.14.jar AppleSkin {[email protected] COMMON_SETUP} FastLeafDecay-v23.jar FastLeafDecay {fastleafdecay@v23 COMMON_SETUP} curios-FORGE-1.16.1-3.0-beta2.jar Curios API {[email protected] COMMON_SETUP} angelring-1.16.1-1.3.0.jar Angel Ring {[email protected] COMMON_SETUP} rockcandy-1.16-1.0.1.jar Rock Candy {rockcandy@version COMMON_SETUP} XaerosWorldMap_1.7.3_Forge_1.16.1.jar Xaero's World Map {[email protected] COMMON_SETUP} ironchest-1.16.1-11.0.1.jar Iron Chests {[email protected] COMMON_SETUP} Placebo-1.16.1-4.0.1.jar Placebo {[email protected] COMMON_SETUP} Launched Version: 1.16.1-forge-32.0.63 Backend library: LWJGL version 3.2.2 build 10 Backend API: GeForce GT 1030/PCIe/SSE2 GL version 4.6.0 NVIDIA 442.50, NVIDIA Corporation GL Caps: Using framebuffer using OpenGL 3.0 Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'forge' Type: Client (map_client.txt) Resource Packs: Current Language: English (US) CPU: 4x Intel(R) Core(TM) i5-2500 CPU @ 3.30GHz It keeps saying not enough data available
  11. Oh wait it's working now. I just had to remove the Lucky Block mod, Sorry
  12. ---- Minecraft Crash Report ---- WARNING: coremods are present: Quark Plugin (Quark-r1.6-178.jar) LucraftCoreCoreMod (LucraftCore-1.12.2-2.4.9.jar) ForgelinPlugin (Forgelin-1.8.4.jar) pymtech (PymTech-1.12.2-1.0.2.jar) BewitchmentFMLLoadingPlugin (bewitchment-1.12.2-0.0.21.11.jar) MovingWorldCore (movingworld-1.12-6.342-full.jar) ColytraLoadingPlugin (colytra-1.12.2-1.2.0.4.jar) Contact their authors BEFORE contacting forge // You should try our sister game, Minceraft! Time: 6/19/20 10:01 PM Description: There was a severe problem during mod loading that has caused the game to fail net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from Way More Ores Mod (waymoreoresmod) Caused by: java.lang.IllegalStateException: Attempted to set registry name with existing registry name! New: rubyblock Old: mooresandtools:rubyblock at net.minecraftforge.registries.IForgeRegistryEntry$Impl.setRegistryName(IForgeRegistryEntry.java:71) at mod.mcreator.mcreator_rubyBlock.preInit(mcreator_rubyBlock.java:49) at mod.mcreator.waymoreoresmod.preInit(waymoreoresmod.java:1999) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:637) at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) at com.google.common.eventbus.EventBus.post(EventBus.java:217) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) at com.google.common.eventbus.EventBus.post(EventBus.java:217) at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136) at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:629) at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:252) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:467) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378) at net.minecraft.client.main.Main.main(SourceFile:123) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.12.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 501718576 bytes (478 MB) / 1330642944 bytes (1269 MB) up to 3008888832 bytes (2869 MB) JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx3228m -Xms256m -XX:PermSize=256m IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.42 Powered by Forge 14.23.5.2847 61 mods loaded, 61 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored | State | ID | Version | Source | Signature | |:----- |:-------------------------------------------- |:------------------------ |:----------------------------------------------------------------- |:---------------------------------------- | | LCH | minecraft | 1.12.2 | minecraft.jar | None | | LCH | mcp | 9.42 | minecraft.jar | None | | LCH | FML | 8.0.99.99 | forge-1.12.2-14.23.5.2847.jar | None | | LCH | forge | 14.23.5.2847 | forge-1.12.2-14.23.5.2847.jar | None | | LCH | com.elytradev.movingworld.common.asm.coremod | | minecraft.jar | None | | LCH | jei | 4.15.0.291 | jei_1.12.2-4.15.0.291.jar | None | | LCH | quark | r1.6-178 | Quark-r1.6-178.jar | None | | LCH | autoreglib | 1.3-32 | AutoRegLib-1.3-32.jar | None | | LCH | baubles | 1.5.2 | Baubles-1.12-1.5.2.jar | None | | LCH | bettercombatmod | 1.5.6 | BetterCombat-1.12.2-1.5.6.jar | None | | LCH | bettergolem | 1.0 | bettergolem-1.12.2-1.0.jar | None | | LCH | betterinvisibility | 1.0 | betterinvisibility-1.12-1.0.jar | None | | LCH | forgelin | 1.8.4 | Forgelin-1.8.4.jar | None | | LCH | betterportals | 0.3.7.7 | betterportals-0.3.7.7.jar | None | | LCH | betterquesting | 3.5.323 | BetterQuesting-3.5.323.jar | None | | LCH | patchouli | 1.0-20 | Patchouli-1.0-20.jar | None | | LCH | bewitchment | 0.21.11 | bewitchment-1.12.2-0.0.21.11.jar | None | | LCH | biomevotenineteenitems | 1.0.0 | Biome vote 2019 items 1.0.1.jar | None | | LCH | biomesoplenty | 7.0.1.2441 | BiomesOPlenty-1.12.2-7.0.1.2441-universal.jar | None | | LCH | chameleon | 1.12-4.1.3 | Chameleon-1.12-4.1.3.jar | None | | LCH | colytra | 1.2.0.4 | colytra-1.12.2-1.2.0.4.jar | 2484ef4d131fdc0dca0647aa21b7b944ddb935a1 | | LCH | customspawner | 3.11.4 | CustomMobSpawner-3.11.5.jar | None | | LCH | dailies | 1.12.2-6 | dailies-1.12.2-6.jar | None | | LCH | movingworld | 1.12-6.342 | movingworld-1.12-6.342-full.jar | None | | LCH | davincisvessels | @DVESSELSVER@ | davincisvessels-1.12-6.340-full.jar | None | | LCH | ebwizardry | 4.2.10 | ElectroblobsWizardry-4.2.10-MC1.12.2.jar | None | | LCH | umm3185118519 | release 1.5 - MC 1.12.2 | Extended ItemsOres [1.12.2] (release 1.5).jar | None | | LCH | golems | 7.1.9 | ExtraGolems-1.12-7.1.9.jar | None | | LCH | fire_tools | 1.0.0 | Fire tools 1.12.2 1.2.0.jar | None | | LCH | cfm | 6.3.1 | furniture-6.3.1-1.12.2.jar | None | | LCH | ironman | Beta-1.12.2-1.2.6 | IronMan-1.12.2-Beta-1.12.2-1.2.6.jar | None | | LCH | speedsterheroes | 1.12.2-2.1.4 | SpeedsterHeroes-1.12.2-2.1.4.jar | None | | LCH | mantle | 1.12-1.3.3.55 | Mantle-1.12-1.3.3.55.jar | None | | LCH | tconstruct | 1.12.2-2.13.0.183 | TConstruct-1.12.2-2.13.0.183.jar | None | | LCH | lucraftcore | 1.12.2-2.4.9 | LucraftCore-1.12.2-2.4.9.jar | None | | LCH | heroesexpansion | 1.12.2-1.3.5 | HeroesExpansion-1.12.2-1.3.5.jar | None | | LCH | ice_tools | 1.0.0 | Ice tools 1.12.2 1.1.1.jar | None | | LCH | journeymap | 1.12.2-5.7.1 | journeymap-1.12.2-5.7.1.jar | None | | LCH | earthenbounty | 2.1.6 | just_a_few_more_ores-2.1.6.jar | None | | LCH | minecoprocessors | 1.12.2-5 | minecoprocessors-1.12.2-5.jar | None | | LCH | mineralogy | 3.8.0 | Mineralogy-1.12.2-3.8.0.53.jar | d476d1b22b218a10d845928d1665d45fce301b27 | | LCH | golems_mineralogy | 7.1.7-2 | MineralogyGolemsAddon-1.12-7.1.7-2.jar | None | | LCH | mooresandtools | v3.3.3 - Going Mech Path | MOAT(Mo' Ores And Tools - 1.12.2 - v3.3.3 - Going Mech Patch).jar | None | | LCH | monk | 1.4 | monk-mod-1.4.jar | None | | LCH | multimob | 1.0.5 | multimob-1.0.5.jar | None | | LCH | mutantbeasts | 1.12.2-0.7.0 | MutantBeasts-1.12.2-0.7.0.jar | 25e0dcff5b5a7325d7c28898af41ff8b0ba41b77 | | LCH | harvestcraft | 1.12.2zb | Pam's HarvestCraft 1.12.2zg.jar | None | | LCH | primitivemobs | 1.2.3a | primitivemobs-1.2.3a.jar | None | | LCH | pymtech | 1.12.2-1.0.2 | PymTech-1.12.2-1.0.2.jar | None | | LCH | questbook | 3.1.1-1.12 | questbook-3.1.1-1.12.jar | None | | LCH | signedit | 1.12.2-4 | signedit-1.12.2-5.jar | None | | LCH | bq_standard | 3.4.173 | StandardExpansion-3.4.173.jar | None | | LCH | storagedrawers | 1.12.2-5.4.1 | StorageDrawers-1.12.2-5.4.1.jar | None | | LCH | golems_tcon | 7.1.5-0 | TinkersGolemsAddon-1.12-7.1.5-0.jar | None | | LCH | torohealthmod | 1.12.2-11 | torohealth-1.12.2-11.jar | None | | LCH | toroquest | 1.12.2-5.3 | toroquest-1.12.2-5.3.jar | None | | LCH | travellersbackpack | 1.0.23.23 | TravellersBackpack-1.12.2-1.0.23.23.jar | None | | LCH | wawla | 2.6.274 | Wawla-1.12.2-2.6.274.jar | d476d1b22b218a10d845928d1665d45fce301b27 | | LCE | waymoreoresmod | 1.3.0 | Way More Ores 1.5.5.jar | None | | LC | wolfarmor | 2.2.3.6 | wolfarmor-1.12.2-2.2.3.1798-universal.jar | None | | LC | xlfoodmod | 1.12.2-1.9.2 | XL-Food-Mod-1.12.2-1.9.2.jar | None | Loaded coremods (and transformers): Quark Plugin (Quark-r1.6-178.jar) vazkii.quark.base.asm.ClassTransformer LucraftCoreCoreMod (LucraftCore-1.12.2-2.4.9.jar) lucraft.mods.lucraftcore.core.LCTransformer ForgelinPlugin (Forgelin-1.8.4.jar) pymtech (PymTech-1.12.2-1.0.2.jar) lucraft.mods.pymtech.core.PymTechClassTransformer BewitchmentFMLLoadingPlugin (bewitchment-1.12.2-0.0.21.11.jar) MovingWorldCore (movingworld-1.12-6.342-full.jar) ColytraLoadingPlugin (colytra-1.12.2-1.2.0.4.jar) c4.colytra.asm.ElytraTransformer GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 442.50' Renderer: 'GeForce GT 1030/PCIe/SSE2' Pulsar/tconstruct loaded Pulses: - TinkerCommons (Enabled/Forced) - TinkerWorld (Enabled/Not Forced) - TinkerTools (Enabled/Not Forced) - TinkerHarvestTools (Enabled/Forced) - TinkerMeleeWeapons (Enabled/Forced) - TinkerRangedWeapons (Enabled/Forced) - TinkerModifiers (Enabled/Forced) - TinkerSmeltery (Enabled/Not Forced) - TinkerGadgets (Enabled/Not Forced) - TinkerOredict (Enabled/Forced) - TinkerIntegration (Enabled/Forced) - TinkerFluids (Enabled/Forced) - TinkerMaterials (Enabled/Forced) - TinkerModelRegister (Enabled/Forced) - quarkIntegration (Enabled/Not Forced)
  13. I have redownloaded all of the mods from the curseforge website and deleted all of the 9minecraft ones and I am getting the same issue
  14. I have gotten most of my mods from 9minecraft and curseforge
  15. ---- Minecraft Crash Report ---- // I let you down. Sorry :( Time: 5/29/20 10:03 AM Description: Rendering overlay com.electronwill.nightconfig.core.io.ParsingException: Not enough data available at com.electronwill.nightconfig.core.io.ParsingException.notEnoughData(ParsingException.java:22) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.io.ReaderInput.directReadChar(ReaderInput.java:36) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.io.AbstractInput.readChar(AbstractInput.java:49) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.io.AbstractInput.readCharsUntil(AbstractInput.java:123) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.toml.TableParser.parseKey(TableParser.java:166) ~[toml-3.6.2.jar:?] {} at com.electronwill.nightconfig.toml.TableParser.parseDottedKey(TableParser.java:145) ~[toml-3.6.2.jar:?] {} at com.electronwill.nightconfig.toml.TableParser.parseNormal(TableParser.java:55) ~[toml-3.6.2.jar:?] {} at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:44) ~[toml-3.6.2.jar:?] {} at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:37) ~[toml-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:113) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:219) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:202) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.file.WriteSyncFileConfig.load(WriteSyncFileConfig.java:73) ~[core-3.6.2.jar:?] {} at com.electronwill.nightconfig.core.file.AutosaveCommentedFileConfig.load(AutosaveCommentedFileConfig.java:85) ~[core-3.6.2.jar:?] {} at net.minecraftforge.fml.config.ConfigFileTypeHandler.lambda$reader$1(ConfigFileTypeHandler.java:53) ~[?:?] {re:classloading} at net.minecraftforge.fml.config.ConfigFileTypeHandler$$Lambda$3923/1217818289.apply(Unknown Source) ~[?:?] {} at net.minecraftforge.fml.config.ConfigTracker.openConfig(ConfigTracker.java:104) ~[?:?] {re:classloading} at net.minecraftforge.fml.config.ConfigTracker.lambda$loadConfigs$1(ConfigTracker.java:83) ~[?:?] {re:classloading} at net.minecraftforge.fml.config.ConfigTracker$$Lambda$3922/1701184223.accept(Unknown Source) ~[?:?] {} at java.lang.Iterable.forEach(Iterable.java:75) ~[?:1.8.0_51] {} at java.util.Collections$SynchronizedCollection.forEach(Collections.java:2062) ~[?:1.8.0_51] {} at net.minecraftforge.fml.config.ConfigTracker.loadConfigs(ConfigTracker.java:83) ~[?:?] {re:classloading} at net.minecraftforge.fml.ModLoader.lambda$null$5(ModLoader.java:153) ~[?:?] {re:classloading} at net.minecraftforge.fml.ModLoader$$Lambda$3921/1057326871.run(Unknown Source) ~[?:?] {} at net.minecraftforge.fml.DistExecutor.unsafeRunWhenOn(DistExecutor.java:125) ~[?:?] {re:classloading} at net.minecraftforge.fml.DistExecutor.runWhenOn(DistExecutor.java:109) ~[?:?] {re:classloading} at net.minecraftforge.fml.ModLoader.loadMods(ModLoader.java:153) ~[?:?] {re:classloading} at net.minecraftforge.fml.client.ClientModLoader.lambda$startModLoading$6(ClientModLoader.java:123) ~[?:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraftforge.fml.client.ClientModLoader$$Lambda$3916/1226026499.run(Unknown Source) ~[?:?] {} at net.minecraftforge.fml.client.ClientModLoader.lambda$createRunnableWithCatch$5(ClientModLoader.java:113) ~[?:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraftforge.fml.client.ClientModLoader$$Lambda$2073/51757185.run(Unknown Source) ~[?:?] {} at net.minecraftforge.fml.client.ClientModLoader.startModLoading(ClientModLoader.java:123) ~[?:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraftforge.fml.client.ClientModLoader.lambda$onreload$3(ClientModLoader.java:105) ~[?:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraftforge.fml.client.ClientModLoader$$Lambda$3888/1519451306.run(Unknown Source) ~[?:?] {} at net.minecraftforge.fml.client.ClientModLoader.lambda$createRunnableWithCatch$5(ClientModLoader.java:113) ~[?:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraftforge.fml.client.ClientModLoader$$Lambda$2073/51757185.run(Unknown Source) ~[?:?] {} at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1618) ~[?:1.8.0_51] {} at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1610) ~[?:1.8.0_51] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) ~[?:1.8.0_51] {} at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) ~[?:1.8.0_51] {} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1689) ~[?:1.8.0_51] {} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157) ~[?:1.8.0_51] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Stacktrace: at com.electronwill.nightconfig.core.io.ParsingException.notEnoughData(ParsingException.java:22) at com.electronwill.nightconfig.core.io.ReaderInput.directReadChar(ReaderInput.java:36) at com.electronwill.nightconfig.core.io.AbstractInput.readChar(AbstractInput.java:49) at com.electronwill.nightconfig.core.io.AbstractInput.readCharsUntil(AbstractInput.java:123) at com.electronwill.nightconfig.toml.TableParser.parseKey(TableParser.java:166) at com.electronwill.nightconfig.toml.TableParser.parseDottedKey(TableParser.java:145) at com.electronwill.nightconfig.toml.TableParser.parseNormal(TableParser.java:55) at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:44) at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:37) at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:113) at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:219) at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:202) at com.electronwill.nightconfig.core.file.WriteSyncFileConfig.load(WriteSyncFileConfig.java:73) at com.electronwill.nightconfig.core.file.AutosaveCommentedFileConfig.load(AutosaveCommentedFileConfig.java:85) at net.minecraftforge.fml.config.ConfigFileTypeHandler.lambda$reader$1(ConfigFileTypeHandler.java:53) at net.minecraftforge.fml.config.ConfigFileTypeHandler$$Lambda$3923/1217818289.apply(Unknown Source) at net.minecraftforge.fml.config.ConfigTracker.openConfig(ConfigTracker.java:104) at net.minecraftforge.fml.config.ConfigTracker.lambda$loadConfigs$1(ConfigTracker.java:83) at net.minecraftforge.fml.config.ConfigTracker$$Lambda$3922/1701184223.accept(Unknown Source) at java.lang.Iterable.forEach(Iterable.java:75) at java.util.Collections$SynchronizedCollection.forEach(Collections.java:2062) at net.minecraftforge.fml.config.ConfigTracker.loadConfigs(ConfigTracker.java:83) at net.minecraftforge.fml.ModLoader.lambda$null$5(ModLoader.java:153) at net.minecraftforge.fml.ModLoader$$Lambda$3921/1057326871.run(Unknown Source) at net.minecraftforge.fml.DistExecutor.unsafeRunWhenOn(DistExecutor.java:125) at net.minecraftforge.fml.DistExecutor.runWhenOn(DistExecutor.java:109) at net.minecraftforge.fml.ModLoader.loadMods(ModLoader.java:153) -- Overlay render details -- Details: Overlay name: net.minecraft.client.gui.ResourceLoadProgressGui Stacktrace: at net.minecraft.client.renderer.GameRenderer.func_195458_a(GameRenderer.java:472) at net.minecraft.client.Minecraft.func_195542_b(Minecraft.java:924) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:553) at net.minecraft.client.main.Main.main(SourceFile:204) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraftforge.fml.loading.FMLClientLaunchProvider.lambda$launchService$0(FMLClientLaunchProvider.java:51) at net.minecraftforge.fml.loading.FMLClientLaunchProvider$$Lambda$436/703440120.call(Unknown Source) at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) at cpw.mods.modlauncher.Launcher.run(Launcher.java:81) at cpw.mods.modlauncher.Launcher.main(Launcher.java:65) -- System Details -- Details: Minecraft Version: 1.15.2 Minecraft Version ID: 1.15.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 2437440464 bytes (2324 MB) / 4294967296 bytes (4096 MB) up to 4294967296 bytes (4096 MB) CPUs: 4 JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx4G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M ModLauncher: 5.1.0+69+master.79f13f7 ModLauncher launch target: fmlclient ModLauncher naming: srg ModLauncher services: /eventbus-2.2.0-service.jar eventbus PLUGINSERVICE /forge-1.15.2-31.2.5.jar object_holder_definalize PLUGINSERVICE /forge-1.15.2-31.2.5.jar runtime_enum_extender PLUGINSERVICE /accesstransformers-2.1.1-shadowed.jar accesstransformer PLUGINSERVICE /forge-1.15.2-31.2.5.jar capability_inject_definalize PLUGINSERVICE /forge-1.15.2-31.2.5.jar runtimedistcleaner PLUGINSERVICE /forge-1.15.2-31.2.5.jar fml TRANSFORMATIONSERVICE /MixinBootstrap-1.0.3.jar mixinbootstrap TRANSFORMATIONSERVICE /MixinBootstrap-1.0.3.jar mixin PLUGINSERVICE /MixinBootstrap-1.0.3.jar mixinbootstrap PLUGINSERVICE FML: 31.2 Forge: net.minecraftforge:31.2.5 FML Language Providers: [email protected] minecraft@1 Mod List: forge-1.15.2-31.2.5-client.jar Minecraft {[email protected] CREATE_REGISTRIES} Lucky-Block-Mod-1.15.2.jar Lucky Block {[email protected] CREATE_REGISTRIES} OpenBlocks-Elevator-Mod-1.15.2.jar Elevator Mod {[email protected] CREATE_REGISTRIES} PattysMoreTools-2-Mod-1.15.2.jar PattysMoreTools-2 {[email protected] CREATE_REGISTRIES} obfuscate-0.4.1-1.15.2.jar Obfuscate {[email protected] CREATE_REGISTRIES} u_team_core-1.15.2-2.11.0.156.jar U Team Core {[email protected] CREATE_REGISTRIES} nethercraft-1.15.2-1.0.8.jar Nethercraft {[email protected] CREATE_REGISTRIES} MrCrayfishs-Furniture-Mod-1.15.2.jar MrCrayfish's Furniture Mod {[email protected] CREATE_REGISTRIES} MrCrayfishs-Vehicle-Mod-1.15.2.jar MrCrayfish's Vehicle Mod {[email protected] CREATE_REGISTRIES} jei-1.15.2-6.0.0.2.jar Just Enough Items {[email protected] CREATE_REGISTRIES} simplefarming-1.15.2-1.2.7.jar Simple Farming {[email protected] CREATE_REGISTRIES} Get-In-The-Bucket-Mod-1.15.2.jar Get In The Bucket Mod {[email protected] CREATE_REGISTRIES} forge-1.15.2-31.2.5-universal.jar Forge {[email protected] CREATE_REGISTRIES} Upgrade-Aquatic-Mod-1.15.2.jar Upgrade Aquatic {[email protected] CREATE_REGISTRIES} Extra-Golems-Mod-1.15.2.jar Extra Golems {[email protected] CREATE_REGISTRIES} PattysMoreStuff-Mod-1.15.2.jar pattysmorestuff {[email protected] CREATE_REGISTRIES} Explorercraft-1.15.2-4.0.1.jar Explorercraft {[email protected] ERROR} Neat+1.6-20.jar Neat {[email protected] CREATE_REGISTRIES} Iron-Chests-Mod-1.15.2.jar Iron Chests {[email protected] CREATE_REGISTRIES} AutoRegLib-1.15.2.jar AutoRegLib {[email protected] CREATE_REGISTRIES} Quark-Mod-1.15.2.jar Quark {[email protected] CREATE_REGISTRIES} [1.15.2]+SecurityCraft+v1.8.16.jar SecurityCraft {[email protected] CREATE_REGISTRIES} Launched Version: 1.15.2-forge-31.2.5 Backend library: LWJGL version 3.2.2 build 10 Backend API: GeForce GT 1030/PCIe/SSE2 GL version 4.6.0 NVIDIA 442.50, NVIDIA Corporation GL Caps: Using framebuffer using OpenGL 3.0 Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'forge' Type: Client (map_client.txt) Resource Packs: Current Language: ~~ERROR~~ NullPointerException: null CPU: 4x Intel(R) Core(TM) i5-2500 CPU @ 3.30GHz

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.