Skip 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.

warjort

Members
  • Joined

  • Last visited

Everything posted by warjort

  1. This mod can help you understand what your server is doing. https://www.curseforge.com/minecraft/mc-mods/spark
  2. I have tried to underline all the things that could be causes of this problem. NOTE: These are just the most likely, it is not exhaustive there are other possibilities listed further down the error message. Also some of these things underlined might not be mod names. Sometimes mod authors are not always helpful in the way they name things. ๐Ÿ˜ž
  3. It looks like you have an issue where IntegratedDynamics is expecting to find a JEI class, but you have REI installed? You should check you have the latest version of these mods then contact the mod authors.
  4. You can also try posting the installer.log.txt to see if the minecraft launcher has recorded an error that is not shown in the log you posted?
  5. Don't know then. The log you posted isn't the logs/debug.log that was asked for. And it doesn't contain any other error. We don't even know if the GL ERROR is gone because you don't show an updated log.
  6. Actually that GL ERROR seems to be a problem with misconfiguring key binds. e.g. see this similar issue reported for quark https://github.com/VazkiiMods/Quark/issues/3793 Of course, it doesn't mean the current problem is caused by Quark, only that it points to badly configured key bindings (either by a mod or the user). One thing to try would be backup your options.txt then delete it. This will allow the key bindings to revert to their default configuration. But it will do the same for all your other minecraft option settings as well.
  7. That network packet is handled by ServerPlayerGameMode.handleBlockBreakAction() You can see forge already has an event there PlayerInteractEvent.LeftClickBlock. Your issue is that the event is not designed for your use case. It is fired to determine what method is used to handle the packet or whether it should be handled at all. You might be able to use it, but you would probably have to do if (player instanceof ServerPlayer serverPlayer) { ServerPlayerGameMode gameMode = serverPlayer.gameMode // your logic } Then use an access transformer to get access to the block break progress fields in that class, e.g. "isDestroyingBlock", "destroyProgressStart", "gameTicks", etc. Your problem will be that those fields have not been updated yet when the event is fired, so you will have a kind of "off by one" issue. Like I said, the event is not really designed for this usecase.
  8. Since reverting to a previous version seems to have fixed the issue, you should report it to the mod author so they can fix it.
  9. This is in your config file, not the mod: E:\Users\david\Downloads\1.19 Server\config\byg\trades.json5
  10. Your error now is something about evilcraft:werewolf not being a valid profession
  11. Creating music disks is the missing method in the moonlight mod :
  12. The way music disks got registered changed in either 1.19.1 or 1.19.2 (can't remember) so it might be the compatibility is marked wrongly for one of these mods. Like I said, the mod author would know more about this.
  13. Your other errors including the problem you had with evilcraft may just be a consequence of this? They are all missing registry entries at a later stage in the mod loading.
  14. java.lang.NoSuchMethodError: 'net.minecraft.world.item.RecordItem net.mehvahdjukaar.moonlight.api.platform.PlatformHelper.newMusicDisc(int, java.util.function.Supplier, net.minecraft.world.item.Item$Properties)' at TRANSFORMER/[email protected]/net.mehvahdjukaar.supplementaries.reg.ModRegistry.lambda$static$168(ModRegistry.java:1001) at TRANSFORMER/[email protected]/net.minecraftforge.registries.DeferredRegister.lambda$addEntries$1(DeferredRegister.java:388) Looks like an issue with either supplementaries or the moonlight mod. You seem to have the latest versions of these mods for 1.19 - double check? Then contact the mod author.
  15. https://github.com/sp614x/optifine/issues/6974
  16. That is unknowable. It depends upon how many and what mods you have installed. If you use prebuilt modpacks they will often have a recommended amount.
  17. Remove rubidium and its related broken client side only mods from the server. You don't need them there.
  18. java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: Java heap space You need to give minecraft more memory. It will be a setting somewhere in your Multimc configuration.
  19. You have hit an OS configuration limit. From the error message it looks like this one or it might be max_user_watches? $ sudo sysctl -n fs.inotify.max_user_instances 128 How you change it will depend upon your distribution, but it is probably /etc/sysctl.conf?
  20. Still don't know. 3 lines of debug doesn't give any context. Maybe your ide is holding some locks on a competing process, either within gradle or on the filesystem? e.g. when you first load into the ide it can take some time (though not 20 minutes) for it to check the gradle build is up-to-date which might be competing Try closing your ide and running the task from the command line. There is also a tool within intellij that lets you run gradle tasks. You could also try closing everything down and then checking task manager to see if you have any java background processes still running. Maybe you have a previous build that has got stuck and hasn't ended properly - so it is still holding locks? These aren't really forge issues (except that you are trying to run a forge gradle task). You would probably get more useful help asking on the forums/discord for gradle or intellij.
  21. Rephrasing what I said above: Inside the minecraft launcher click installations, find your forge installation, click it, click "more options" then change "java executable" to the path of the java.exe of adoptium. Then click "save".
  22. # A fatal error has been detected by the Java Runtime Environment: # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000001ac6ed4b19b, pid=2936, tid=1684 # JRE version: OpenJDK Runtime Environment Microsoft-28056 (17.0.1+12) (build 17.0.1+12-LTS) # Java VM: OpenJDK 64-Bit Server VM Microsoft-28056 (17.0.1+12-LTS, mixed mode, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64) # Problematic frame: # v ~RuntimeStub::g1_post_barrier_slow # If you would like to submit a bug report, please visit: # https://github.com/microsoft/openjdk/issues This is an error in java itself (I don't know what this error means except that it is a bug). You can report the problem to microsoft at the link above. You could also try a different version of java, e.g. https://adoptium.net/ which is currently at version 17.0.4 compared with the microsoft 17.0.1 you are using. You will need to change the "java executable" in the "more options" for your forge installation settings inside the minecraft launcher to use it.
  23. Why are you reporting it here when you know which mod is causing the problem? Check you have the latest version of cc:tweaked then report it to the mod author.
  24. Remove rubidium-extras until they fix it: https://github.com/TeamDeusVult/MagnesiumExtras/issues/26

Important Information

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

Account

Navigation

Search

Search

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.