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.

All Activity

This stream auto-updates

  1. Today
  2. Okay after changing to Eclipse and talking with the people in the server, I have solved the issue. Not only was I referencing the mod in my dependencies (build.gradle and mods.toml) but I also had the .jar in my /run/mods directory. It was the second causing the issue. We figured this out as I was able to build my mod and run it together with BW in a regular forge 1.20.1 instance. I believe it was also necessary to add the previously mentioned MixinGradle Plugin to the build.gradle file. Thanks to everyone for your help!
  3. ravvens joined the community
  4. JAKUB67_61 joined the community
  5. ACupofTree joined the community
  6. CaeTweaker joined the community
  7. fg.deobf was definitely in place. Everything you see on my github page is how it was when I first made the post. I only added the plugin to the build.gradle then tried running the code on my machine (without pushing the code) leading to the runClient crash. I've tried several Gradle refreshes/syncs, only to get the same error (I found the same reference to m_6631_) though I may be doing it wrong as I'm not that experienced with using Gradle. I am on VSCode. I'll follow your suggestion and try the discord.
  8. At a cursory glance on the website, that product does not work with MinecraftForge as a mod. Neoforge is a different mod loader, they have their own support. People may have looked at your post, but not know an answer, so asking for replies from viewers as you did is probably not very useful. If you're looking for a chat room vs a forum, you should join the discord.
  9. Could the viewers please respond ......
  10. I noticed a plugin called GeyserMC (I'm not sure if it's a plugin or a mod). I installed it in the mods folder, but after starting, it didn't create a Geyser folder as instructed in the documentation. Did I download the wrong version (the Spigot version)? I downloaded NeoForge (chatGPT told me it's compatible with Forge) Please teach me...
  11. ProfHester24 joined the community
  12. X_T joined the community
  13. m_6631_ is Tier.getAttackDamageBonus, you can see the call in the Basic Weapons code here. I'm not sure why this is happening, the fg.deobf call in build.gradle should be deobfuscating the dependency from SRG to Official/Parchment names. Did you definitely have fg.deobf in place when you got this crash? Try refreshing the Gradle project in your IDE to make sure it's in sync with the build script. In IntelliJ IDEA, this can be done with the "Sync All Gradle Projects" button in the Gradle window. If this doesn't help, you may want to ask in the #mod-dev-support-1․20․x channel on Discord as there are people there that don't read the forums.
  14. reya joined the community
  15. Yesterday
  16. TargetG joined the community
  17. pyro_el_pro joined the community
  18. Ah, sorry about that, should be public now. I'll look into that plugin, thank you for your response. EDIT: Upon adding the plugin to the build.gradle, the runClient crashed, here are the crash txt and the latest.log: pastebin.com/6m0TcNqe pastebin.com/U978GhBq
  19. I was just struggling with this too. Posting my solution, if it helps anyone. Works for 1.20.1 // First make your custom stats register public static final DeferredRegister<ResourceLocation> CUSTOM_STATS = DeferredRegister.create(Registries.CUSTOM_STAT, MyMod.MODID); // Then make your custom stat type and add it to your register public static final RegistryObject<ResourceLocation> BLOCK_PLACED = CUSTOM_STATS.register("block_placed", () -> ResourceLocation.fromNamespaceAndPath(MyMod.MODID, "block_placed")); // Register your register :) Called from init method of your mod public static void register(IEventBus eventBus) { CUSTOM_STATS.register(eventBus); } // An example usage of my custom stat @SubscribeEvent public void onBlockPlace(BlockEvent.EntityPlaceEvent event) { if (!(event.getEntity() instanceof ServerPlayer player)) return; player.awardStat(Stats.CUSTOM.get(BLOCK_PLACED.get())); }
  20. Hey, I am making an modpack and I am getting the mods.toml file is missing. I was wondering if you had solved that issue and if so, how would I go about fixing it for my modpack?
  21. Last week
  22. Your repository appears to be private. You probably need to add the MixinGradle plugin to allow it to deobfuscate the mixins from your dependency. You shouldn't need the annotation processor or other configuration from that page unless you're using mixins yourself.
  23. I am attempting to make a mod that serves as an expansion to the mod Basic Weapons by Khazoda for a (currently) personal modpack. I want to add a custom tier of the weapons that the mod adds, so I thought the simplest solution would be to make a mod that depends on BW to work (I tried KubeJS and that was a no go given other mods that interact with the weapons). Depending on BW would also let me use the methods so I don't have to recreate the behavior of certain weapons. To start, I followed KaupenJoe's 1.20.1 modding setup tutorial and the simple item tutorial. Then I followed the Modrinth Maven tutorial to add BW as a dependency to my mod. I swear on my soul that after doing this, ONCE I was able to do the gradle runClient, and the game loaded up with no errors. However, now every time I try to do this again, I get this error showing in the game client: Basic Weapons (basicweapons) has failed to load correctly org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered Here is the latest crash .txt and the latest.log: pastebin.com/MpdMwwj6 pastebin.com/RMXM3g5p I think it has to do with their use of the spongepowered mixin thing in their build.gradle, but it may also be related to the fact I am using parchment mapping (just what the tutorial said to do, feel free to say if using that is bad practice) and BW is using official mappings. Here is also my git page for my mod in its current state, along with the page for Khazodas mod (the branch that I am currently dealing with via Modrinth maven): github.com/McNasty102/Forge-Mod-Test/tree/mod-test github.com/Khazoda/basic-weapons/tree/1.20.1-forge
  24. hey i have the same problem as vytoxfreecs but when i tried doing champion ashes method there is nothing here i'll paste it here and will someone please help # Copyright (c) 1993-2009 Microsoft Corp. # # This is a sample HOSTS file used by Microsoft TCP/IP for Windows. # # This file contains the mappings of IP addresses to host names. Each # entry should be kept on an individual line. The IP address should # be placed in the first column followed by the corresponding host name. # The IP address and the host name should be separated by at least one # space. # # Additionally, comments (such as these) may be inserted on individual # lines or following the machine name denoted by a '#' symbol. # # For example: # # 102.54.94.97 rhino.acme.com # source server # 38.25.63.10 x.acme.com # x client host # localhost name resolution is handled within DNS itself. # 127.0.0.1 localhost # ::1 localhost
  25. EmilyWilliam changed their profile photo
  26. i'm completely lost on what to do. i've tried disabling every relevant mod i can think of, allocating more ram, loading up the backup, and i'm not sure what the problem is or would be. https://pastebin.com/UzMFhwxi
  27. Looks like some kind of bug with simpleshops
  28. Me and server owner keep crashing when opening inventory after entering a massive claim in the server. claim got deleted but inventory opening still crashes us this is my crash report even after being un oped. note that normal members do not have this issues and are playing as normal its just me and owner with this problem. ---- Minecraft Crash Report ---- // Embeddium instance tainted by mods: [sodiumoptionsapi] // Please do not reach out for Embeddium support without removing these mods first. // ------- // Why did you do that? Time: 2026-01-06 08:19:44 Description: Unexpected error java.lang.NullPointerException: Registry Object not present: simpleshops:simple_shop at net.minecraftforge.registries.RegistryObject.get(RegistryObject.java:572) ~[forge-1.20.1-47.4.10-universal.jar%23293!/:?] {re:mixin,re:classloading,pl:mixin:APP:modernfix-forge.mixins.json:perf.forge_registry_lambda.RegistryObjectMixin,pl:mixin:A} at wolforce.simpleshops.Registry.lambda$static$1(Registry.java:46) ~[simpleshops-1.2.2.jar%23268!/:1.2.2] {re:classloading} at net.minecraftforge.common.ForgeHooks.onCreativeModeTabBuildContents(ForgeHooks.java:1628) ~[forge-1.20.1-47.4.10-universal.jar%23293!/:?] {re:mixin,re:classloading,pl:mixin:APP:modernfix-forge.mixins.json:perf.faster_ingredients.ForgeHooksMixin,pl:mixin:A} at net.minecraft.world.item.CreativeModeTab.m_269498_$mixinextras$wrapped$30(CreativeModeTab.java:129) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.memoize_creative_tab_build.CreativeModeTabMixin,pl:mixin:A} at net.minecraft.world.item.CreativeModeTab.mixinextras$bridge$m_269498_$mixinextras$wrapped$30$31(CreativeModeTab.java) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.memoize_creative_tab_build.CreativeModeTabMixin,pl:mixin:A} at net.minecraft.world.item.CreativeModeTab.wrapMethod$zbn000$buildContentsIfChanged(CreativeModeTab.java:532) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.memoize_creative_tab_build.CreativeModeTabMixin,pl:mixin:A} at net.minecraft.world.item.CreativeModeTab.m_269498_(CreativeModeTab.java) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.memoize_creative_tab_build.CreativeModeTabMixin,pl:mixin:A} at net.minecraft.world.item.CreativeModeTabs.m_268957_(CreativeModeTabs.java:1696) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:quark.mixins.json:CreativeModeTabsMixin,pl:mixin:A} at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(Unknown Source) ~[?:?] {} at java.util.stream.ReferencePipeline$2$1.accept(Unknown Source) ~[?:?] {} at java.util.Iterator.forEachRemaining(Unknown Source) ~[?:?] {re:mixin} at java.util.Spliterators$IteratorSpliterator.forEachRemaining(Unknown Source) ~[?:?] {} at java.util.stream.AbstractPipeline.copyInto(Unknown Source) ~[?:?] {} at java.util.stream.AbstractPipeline.wrapAndCopyInto(Unknown Source) ~[?:?] {} at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(Unknown Source) ~[?:?] {} at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(Unknown Source) ~[?:?] {} at java.util.stream.AbstractPipeline.evaluate(Unknown Source) ~[?:?] {} at java.util.stream.ReferencePipeline.forEach(Unknown Source) ~[?:?] {} at net.minecraft.world.item.CreativeModeTabs.m_269421_(CreativeModeTabs.java:1695) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:quark.mixins.json:CreativeModeTabsMixin,pl:mixin:A} at net.minecraft.world.item.CreativeModeTabs.m_269226_(CreativeModeTabs.java:1710) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:quark.mixins.json:CreativeModeTabsMixin,pl:mixin:A} at net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen.<init>(CreativeModeInventoryScreen.java:86) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_7856_(InventoryScreen.java:48) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:patchouli_xplat.mixins.json:client.MixinInventoryScreen,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.Screen.m_6575_(Screen.java:321) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:trender.mixins.json:client.ScreenAccessor,pl:mixin:APP:balm.mixins.json:ScreenAccessor,pl:mixin:APP:patchouli_xplat.mixins.json:client.AccessorScreen,pl:mixin:APP:werewolves.mixins.json:client.ScreenMixin,pl:mixin:APP:quark.mixins.json:client.ScreenMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91152_(Minecraft.java:1007) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91279_(Minecraft.java:1928) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91398_(Minecraft.java:1795) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1112) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:218) ~[1.20.1-47.4.10.jar:?] {re:classloading,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {} at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.10.jar:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.10.jar:?] {} at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.10.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {} at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?] {} at com.modrinth.theseus.MinecraftLaunch.relaunch(MinecraftLaunch.java:63) ~[theseus.jar%2386!/:?] {} at com.modrinth.theseus.MinecraftLaunch.main(MinecraftLaunch.java:28) ~[theseus.jar%2386!/:?] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Suspected Mod: Simple Shops (simpleshops), Version: 1.2.2 at TRANSFORMER/[email protected]/wolforce.simpleshops.Registry.lambda$static$1(Registry.java:46) Stacktrace: at net.minecraftforge.registries.RegistryObject.get(RegistryObject.java:572) ~[forge-1.20.1-47.4.10-universal.jar%23293!/:?] {re:mixin,re:classloading,pl:mixin:APP:modernfix-forge.mixins.json:perf.forge_registry_lambda.RegistryObjectMixin,pl:mixin:A} at wolforce.simpleshops.Registry.lambda$static$1(Registry.java:46) ~[simpleshops-1.2.2.jar%23268!/:1.2.2] {re:classloading} at net.minecraftforge.common.ForgeHooks.onCreativeModeTabBuildContents(ForgeHooks.java:1628) ~[forge-1.20.1-47.4.10-universal.jar%23293!/:?] {re:mixin,re:classloading,pl:mixin:APP:modernfix-forge.mixins.json:perf.faster_ingredients.ForgeHooksMixin,pl:mixin:A} at net.minecraft.world.item.CreativeModeTab.m_269498_$mixinextras$wrapped$30(CreativeModeTab.java:129) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.memoize_creative_tab_build.CreativeModeTabMixin,pl:mixin:A} at net.minecraft.world.item.CreativeModeTab.mixinextras$bridge$m_269498_$mixinextras$wrapped$30$31(CreativeModeTab.java) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.memoize_creative_tab_build.CreativeModeTabMixin,pl:mixin:A} at net.minecraft.world.item.CreativeModeTab.wrapMethod$zbn000$buildContentsIfChanged(CreativeModeTab.java:532) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.memoize_creative_tab_build.CreativeModeTabMixin,pl:mixin:A} at net.minecraft.world.item.CreativeModeTab.m_269498_(CreativeModeTab.java) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.memoize_creative_tab_build.CreativeModeTabMixin,pl:mixin:A} at net.minecraft.world.item.CreativeModeTabs.m_268957_(CreativeModeTabs.java:1696) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:quark.mixins.json:CreativeModeTabsMixin,pl:mixin:A} at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(Unknown Source) ~[?:?] {} at java.util.stream.ReferencePipeline$2$1.accept(Unknown Source) ~[?:?] {} at java.util.Iterator.forEachRemaining(Unknown Source) ~[?:?] {re:mixin} at java.util.Spliterators$IteratorSpliterator.forEachRemaining(Unknown Source) ~[?:?] {} at java.util.stream.AbstractPipeline.copyInto(Unknown Source) ~[?:?] {} at java.util.stream.AbstractPipeline.wrapAndCopyInto(Unknown Source) ~[?:?] {} at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(Unknown Source) ~[?:?] {} at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(Unknown Source) ~[?:?] {} at java.util.stream.AbstractPipeline.evaluate(Unknown Source) ~[?:?] {} at java.util.stream.ReferencePipeline.forEach(Unknown Source) ~[?:?] {} at net.minecraft.world.item.CreativeModeTabs.m_269421_(CreativeModeTabs.java:1695) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:quark.mixins.json:CreativeModeTabsMixin,pl:mixin:A} at net.minecraft.world.item.CreativeModeTabs.m_269226_(CreativeModeTabs.java:1710) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:quark.mixins.json:CreativeModeTabsMixin,pl:mixin:A} at net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen.<init>(CreativeModeInventoryScreen.java:86) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_7856_(InventoryScreen.java:48) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:patchouli_xplat.mixins.json:client.MixinInventoryScreen,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.Screen.m_6575_(Screen.java:321) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:trender.mixins.json:client.ScreenAccessor,pl:mixin:APP:balm.mixins.json:ScreenAccessor,pl:mixin:APP:patchouli_xplat.mixins.json:client.AccessorScreen,pl:mixin:APP:werewolves.mixins.json:client.ScreenMixin,pl:mixin:APP:quark.mixins.json:client.ScreenMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91152_(Minecraft.java:1007) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91279_(Minecraft.java:1928) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A} -- Affected level -- Details: All players: 1 total; [LocalPlayer['{MINECRAFT_USERNAME}'/34229, l='ClientLevel', x=2492.85, y=91.00, z=-1056.04]] Chunk stats: 729, 453 Level dimension: minecraft:overworld Level spawn location: World: (0,0,0), Section: (at 0,0,0 in 0,0,0; chunk contains blocks 0,-64,0 to 15,319,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511) Level time: 55707019 game time, 18344459 day time Server brand: mohist Server type: Non-integrated multiplayer server Stacktrace: at net.minecraft.client.multiplayer.ClientLevel.m_6026_(ClientLevel.java:455) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:embeddium.mixins.json:features.render.world.ClientLevelMixin,pl:mixin:APP:xaeroworldmap.mixins.json:MixinClientWorld,pl:mixin:APP:xaerohud.mixins.json:MixinClientWorld,pl:mixin:APP:entityculling.mixins.json:ClientWorldMixin,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:embeddium.mixins.json:core.world.biome.ClientWorldMixin,pl:mixin:APP:embeddium.mixins.json:core.world.map.ClientWorldMixin,pl:mixin:APP:embeddium.mixins.json:features.render.world.sky.ClientWorldMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2319) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:740) ~[client-1.20.1-20230612.114412-srg.jar%23288!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:218) ~[1.20.1-47.4.10.jar:?] {re:classloading,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {} at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.10.jar:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.4.10.jar:?] {} at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.4.10.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {} at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {} at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?] {} at com.modrinth.theseus.MinecraftLaunch.relaunch(MinecraftLaunch.java:63) ~[theseus.jar%2386!/:?] {} at com.modrinth.theseus.MinecraftLaunch.main(MinecraftLaunch.java:28) ~[theseus.jar%2386!/:?] {} -- Last reload -- Details: Reload number: 1 Reload reason: initial Finished: Yes Packs: vanilla, mod_resources -- System Details -- Details: Minecraft Version: 1.20.1 Minecraft Version ID: 1.20.1 Operating System: Windows 11 (amd64) version 10.0 Java Version: 17.0.9, Azul Systems, Inc. Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Azul Systems, Inc. Memory: 1703049448 bytes (1624 MiB) / 5259657216 bytes (5016 MiB) up to 10603200512 bytes (10112 MiB) CPUs: 8 Processor Vendor: AuthenticAMD Processor Name: AMD Ryzen 7 3750H with Radeon Vega Mobile Gfx Identifier: AuthenticAMD Family 23 Model 24 Stepping 1 Microarchitecture: Zen / Zen+ Frequency (GHz): 2.30 Number of physical packages: 1 Number of physical CPUs: 4 Number of logical CPUs: 8 Graphics card #0 name: NVIDIA GeForce GTX 1660 Ti with Max-Q Design Graphics card #0 vendor: NVIDIA (0x10de) Graphics card #0 VRAM (MB): 4095.00 Graphics card #0 deviceId: 0x2191 Graphics card #0 versionInfo: DriverVersion=32.0.15.5597 Graphics card #1 name: AMD Radeon(TM) RX Vega 10 Graphics Graphics card #1 vendor: Advanced Micro Devices, Inc. (0x1002) Graphics card #1 VRAM (MB): 128.00 Graphics card #1 deviceId: 0x15d8 Graphics card #1 versionInfo: DriverVersion=27.20.1032.2 Memory slot #0 capacity (MB): 8192.00 Memory slot #0 clockSpeed (GHz): 2.67 Memory slot #0 type: DDR4 Memory slot #1 capacity (MB): 8192.00 Memory slot #1 clockSpeed (GHz): 2.67 Memory slot #1 type: DDR4 Virtual memory max (MB): 28479.56 Virtual memory used (MB): 24283.74 Swap memory total (MB): 12288.00 Swap memory used (MB): 1046.91 JVM Flags: 2 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx10112M Launched Version: 1.20.1 Backend library: LWJGL version 3.3.1 build 7 Backend API: AMD Radeon(TM) RX Vega 10 Graphics GL version 4.6.13596 Core Profile Forward-Compatible Context 20.10.32 27.20.1032.2, ATI Technologies Inc. Window size: 1920x991 GL Caps: Using framebuffer using OpenGL 3.2 GL debug messages: Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'forge' Type: Client (map_client.txt) Graphics mode: fancy Resource Packs: Current Language: en_us CPU: 8x AMD Ryzen 7 3750H with Radeon Vega Mobile Gfx ModLauncher: 10.0.9+10.0.9+main.dcd20f30 ModLauncher launch target: forgeclient ModLauncher naming: srg ModLauncher services: mixin-0.8.5.jar mixin PLUGINSERVICE eventbus-6.0.5.jar eventbus PLUGINSERVICE fmlloader-1.20.1-47.4.10.jar slf4jfixer PLUGINSERVICE fmlloader-1.20.1-47.4.10.jar object_holder_definalize PLUGINSERVICE fmlloader-1.20.1-47.4.10.jar runtime_enum_extender PLUGINSERVICE fmlloader-1.20.1-47.4.10.jar capability_token_subclass PLUGINSERVICE accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE fmlloader-1.20.1-47.4.10.jar runtimedistcleaner PLUGINSERVICE modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE FML Language Providers: [email protected] lowcodefml@null javafml@null Mod List: SmartBrainLib-forge-1.20.1-1.15.jar |SmartBrainLib |smartbrainlib |1.15 |DONE |Manifest: NOSIGNATURE TreeChop-1.20.1-forge-0.19.0.jar |HT's TreeChop |treechop |0.18.8 |DONE |Manifest: NOSIGNATURE QuarkOddities-1.20.1.jar |Quark Oddities |quarkoddities |1.20.1 |DONE |Manifest: NOSIGNATURE kuma-api-forge-20.1.12+1.20.1.jar |KumaAPI |kuma_api |20.1.12 |DONE |Manifest: NOSIGNATURE geckolib-forge-1.20.1-4.8.2.jar |GeckoLib 4 |geckolib |4.8.2 |DONE |Manifest: NOSIGNATURE beautify-2.0.2.jar |Beautify |beautify |2.0.2 |DONE |Manifest: NOSIGNATURE TRender-1.0.8-1.20.1-forge-SNAPSHOT.jar |TRender |trender |1.0.8 |DONE |Manifest: NOSIGNATURE mcw-mcwwindows-2.4.1-mc1.20.1forge.jar |Macaw's Windows |mcwwindows |2.4.1 |DONE |Manifest: NOSIGNATURE sophisticatedcore-1.20.1-1.2.107.1240.jar |Sophisticated Core |sophisticatedcore |1.2.107.1240 |DONE |Manifest: NOSIGNATURE waystones-forge-1.20.1-14.1.17.jar |Waystones |waystones |14.1.17 |DONE |Manifest: NOSIGNATURE XaerosWorldMap_1.39.12_Forge_1.20.jar |Xaero's World Map |xaeroworldmap |1.39.12 |DONE |Manifest: NOSIGNATURE modernfix-forge-5.25.1+mc1.20.1.jar |ModernFix |modernfix |5.25.1+mc1.20.1 |DONE |Manifest: NOSIGNATURE mixinextras-forge-0.2.0-beta.8.jar |MixinExtras |mixinextras |0.2.0-beta.8 |DONE |Manifest: NOSIGNATURE GlitchCore-forge-1.20.1-0.0.1.1.jar |GlitchCore |glitchcore |0.0.1.1 |DONE |Manifest: NOSIGNATURE SereneSeasons-forge-1.20.1-9.1.0.2.jar |Serene Seasons |sereneseasons |9.1.0.2 |DONE |Manifest: NOSIGNATURE sophisticatedbackpacks-1.20.1-3.24.12.1411.jar |Sophisticated Backpacks |sophisticatedbackpacks |3.24.12.1411 |DONE |Manifest: NOSIGNATURE midnightlib-forge-1.9.1+1.20.1.jar |MidnightLib |midnightlib |1.9.1 |DONE |Manifest: NOSIGNATURE Guide-API-VP-1.20.1-2.2.6.jar |Guide-API VP |guideapi_vp |2.2.6 |DONE |Manifest: NOSIGNATURE Wallets-1.20.1-1.1.0.jar |Wallets |wallets |1.1.0 |DONE |Manifest: NOSIGNATURE mcw-doors-1.1.2-mc1.20.1forge.jar |Macaw's Doors |mcwdoors |1.1.2 |DONE |Manifest: NOSIGNATURE decorative_core-1.0508-forge-1.20.1.jar |Decorative Core |decorative_core |1.0508-forge-1.20.1 |DONE |Manifest: NOSIGNATURE balm-forge-1.20.1-7.3.37-all.jar |Balm |balm |7.3.37 |DONE |Manifest: NOSIGNATURE sodiumoptionsapi-forge-1.0.10-1.20.1.jar |Sodium Options API |sodiumoptionsapi |1.0.10 |DONE |Manifest: NOSIGNATURE puzzlesaccessapi-forge-20.1.1.jar |Puzzles Access Api |puzzlesaccessapi |20.1.1 |DONE |Manifest: NOSIGNATURE cloth-config-11.1.136-forge.jar |Cloth Config v10 API |cloth_config |11.1.136 |DONE |Manifest: NOSIGNATURE forge-1.20.1-47.4.10-universal.jar |Forge |forge |47.4.10 |DONE |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90 aestheticstorage-1.20.1_forge_v2.0.0.jar |Aesthetic Storage |aestheticstorage |1.20.1_forge_v2.0.0 |DONE |Manifest: NOSIGNATURE embeddium-0.3.31+mc1.20.1.jar |Embeddium |embeddium |0.3.31+mc1.20.1 |DONE |Manifest: NOSIGNATURE client-1.20.1-20230612.114412-srg.jar |Minecraft |minecraft |1.20.1 |DONE |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f smallbats-0.0.6-ALPHA.jar |Small bats |smallbats |0.0.6-ALPHA |DONE |Manifest: NOSIGNATURE FarmersDelight-1.20.1-1.2.9.jar |Farmer's Delight |farmersdelight |1.20.1-1.2.9 |DONE |Manifest: NOSIGNATURE deco_storage-3.3709-forge-1.20.1.jar |Decorative Storage |deco_storage |3.3709-forge-1.20.1 |DONE |Manifest: NOSIGNATURE aestheticstairs-1.20.1_forge_v2.0.0.jar |Aesthetic Stairs |aestheticstairs |1.20.1_fabric_v2.0.0|DONE |Manifest: NOSIGNATURE fabric-api-base-0.4.31+ef105b4977.jar |Fabric API Base |fabric_api_base |0.4.31+ef105b4977 |DONE |Manifest: NOSIGNATURE MouseTweaks-forge-mc1.20.1-2.25.1.jar |Mouse Tweaks |mousetweaks |2.25.1 |DONE |Manifest: NOSIGNATURE aestheticshelving-1.20.1_forge_v2.0.0.jar |Aesthetic Shelving |aestheticshelving |1.20.1_forge_v2.0.0 |DONE |Manifest: NOSIGNATURE simpleshops-1.2.2.jar |Simple Shops |simpleshops |1.2.2 |DONE |Manifest: NOSIGNATURE Jade-1.20.1-Forge-11.13.2.jar |Jade |jade |11.13.2+forge |DONE |Manifest: NOSIGNATURE WaystonesTeleportPets-1.20-1.20.1--1.2.jar |Waystones Teleport Pets |w2pets |1.0 |DONE |Manifest: NOSIGNATURE mcw-trapdoors-1.1.5-mc1.20.1forge.jar |Macaw's Trapdoors |mcwtrpdoors |1.1.5 |DONE |Manifest: NOSIGNATURE aestheticseating-1.20.1_forge_v.0.6.3.jar |Aesthetic Seating |aestheticseating |1.20.1_forge_v.0.6.3|DONE |Manifest: NOSIGNATURE spectrelib-forge-0.13.17+1.20.1.jar |SpectreLib |spectrelib |0.13.17+1.20.1 |DONE |Manifest: NOSIGNATURE resourcefulconfig-forge-1.20.1-2.1.3.jar |Resourcefulconfig |resourcefulconfig |2.1.3 |DONE |Manifest: NOSIGNATURE RoughlyEnoughItems-12.1.785-forge.jar |Roughly Enough Items (REI) |roughlyenoughitems |12.1.785 |DONE |Manifest: NOSIGNATURE immersive_furniture-forge-0.1.2+1.20.1.jar |Immersive Furniture |immersive_furniture |0.1.2+1.20.1 |DONE |Manifest: NOSIGNATURE curios-forge-5.14.1+1.20.1.jar |Curios API |curios |5.14.1+1.20.1 |DONE |Manifest: NOSIGNATURE ars_nouveau-1.20.1-4.12.7-all.jar |Ars Nouveau |ars_nouveau |4.12.7 |DONE |Manifest: NOSIGNATURE Patchouli-1.20.1-84.1-FORGE.jar |Patchouli |patchouli |1.20.1-84.1-FORGE |DONE |Manifest: NOSIGNATURE Xaeros_Minimap_25.2.10_Forge_1.20.jar |Xaero's Minimap |xaerominimap |25.2.10 |DONE |Manifest: NOSIGNATURE polymorph-forge-0.49.10+1.20.1.jar |Polymorph |polymorph |0.49.10+1.20.1 |DONE |Manifest: NOSIGNATURE Zeta-1.0-30.jar |Zeta |zeta |1.0-30 |DONE |Manifest: NOSIGNATURE entityculling-forge-1.9.3-mc1.20.1.jar |EntityCulling |entityculling |1.9.3 |DONE |Manifest: NOSIGNATURE modonomicon-1.20.1-forge-1.79.2.jar |Modonomicon |modonomicon |1.79.2 |DONE |Manifest: NOSIGNATURE resourcefullib-forge-1.20.1-2.1.29.jar |Resourceful Lib |resourcefullib |2.1.29 |DONE |Manifest: NOSIGNATURE sodiumoptionsmodcompat-forge-1.0.0-1.20.1.jar |Sodium Options Mod Compat |sodiumoptionsmodcompat |1.0.0 |DONE |Manifest: NOSIGNATURE creeperoverhaul-3.0.2-forge.jar |Creeper Overhaul |creeperoverhaul |3.0.2 |DONE |Manifest: NOSIGNATURE architectury-9.2.14-forge.jar |Architectury |architectury |9.2.14 |DONE |Manifest: NOSIGNATURE minecraft-comes-alive-7.6.13+1.20.1-universal.jar |Minecraft Comes Alive |mca |7.6.13+1.20.1 |DONE |Manifest: NOSIGNATURE letsdo-API-forge-1.2.15-forge.jar |[Let's Do] API |doapi |1.2.15 |DONE |Manifest: NOSIGNATURE letsdo-vinery-forge-1.4.41.jar |[Let's Do] Vinery |vinery |1.4.41 |DONE |Manifest: NOSIGNATURE letsdo-beachparty-forge-2.0.3.jar |[Let's Do] Beachparty |beachparty |2.0.3 |DONE |Manifest: NOSIGNATURE Vampirism-1.20.1-1.10.13.jar |Vampirism |vampirism |1.10.13 |DONE |Manifest: NOSIGNATURE useful_vampires-forge-1.20.1-0.1.2.jar |Useful Vampires |useful_vampires |1.0.0-1.20.1 |DONE |Manifest: NOSIGNATURE vampirism_integrations-1.20.1-1.8.1.jar |Vampirism Integrations |vampirism_integrations |1.8.1 |DONE |Manifest: NOSIGNATURE Werewolves-1.20.1-2.0.2.7.jar |Werewolves |werewolves |2.0.2.7 |DONE |Manifest: NOSIGNATURE lootr-forge-1.20-0.7.35.94.jar |Lootr |lootr |0.7.35.94 |DONE |Manifest: NOSIGNATURE Quark-4.0-462.jar |Quark |quark |4.0-462 |DONE |Manifest: NOSIGNATURE ferritecore-6.0.1-forge.jar |Ferrite Core |ferritecore |6.0.1 |DONE |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a TRansition-1.0.8-1.20.1-forge-SNAPSHOT.jar |TRansition |transition |1.0.8 |DONE |Manifest: NOSIGNATURE PuzzlesLib-v8.1.33-1.20.1-Forge.jar |Puzzles Lib |puzzleslib |8.1.33 |DONE |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a arsdelight-1.1.6.jar |Ars Nouveau's Flavors & Deligh|arsdelight |1.1.6 |DONE |Manifest: NOSIGNATURE enchanted-forge-1.20.1-3.1.13.jar |Enchanted |enchanted |3.1.13 |DONE |Manifest: NOSIGNATURE l2library-2.5.1-slim.jar |L2 Library |l2library |2.5.1 |DONE |Manifest: NOSIGNATURE stateobserver-forge-1.20.1-1.4.3.jar |StateObserver |stateobserver |1.4.3 |DONE |Manifest: NOSIGNATURE vampirismco_peculiarities-1.3.jar |Vampirism.co Peculiarities |vampirismco_peculiarities |1.3 |DONE |Manifest: NOSIGNATURE Crash Report UUID: 91974ea3-9489-4383-9342-6cdd8d6faec0 FML: 47.4 Forge: net.minecraftforge:47.4.10
  29. Check for the -Xmx value and change it to -Xmx6G
  30. I may be blind or stupid but I'm not finding that option anywhere... EDIT Wait nevermind I found it - what should it say in that box?
  31. At the Java settings in your Launcher, check for JVM Arguments
  32. I have no idea how to allocate ram unfortunately so I'll have to try to figure that out. Here's the log though: https://mclo.gs/KJ1BTDw
  33. Earlier
  34. If you use curseforge, you can browse "REI Plugin Compatibilities", click install then select FTB stoneBlock 3. If you're anywhere else, I think you can search the mod with this version : 8.0.89 on forge and replace it with the one you have.
  35. Not sure who will even see this, but i have been searching for a standalone mod for minecraft that would give you a Zenkai Boost from DBZ. IDEA: in combat with enemies, dropping to 2 hearts (this threshold might change depending on how many hearts total you have) and surviving will grant you a health and damage boost permanently (1-2%). Lower than 2 hearts gives either more bonus, or grants you haste/speed/jump boost (again 1-2%). Is this a possibility? I haven't seen it anywhere else except in a small addition mod to the DBC (dragonblock c) pack. I have next to no experience with Java and even less with creating mods.
  36. TileEntity started following Pehkui
  37. There is an issue with yungscavebiomes - maybe some kind of conflict with Zeta/Quark

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.