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. You have mods with duplicate mod ids probably because they are different forks of the same project. Usually jei (just enough items) and rei (roughly enough items) or jade and wthit - both forks of waila.
  2. https://github.com/sp614x/optifine/issues/7127
  3. You are correct, it is a java question. You appear to be using an unsupported (in this forum) version of forge, I think 1.12? But then trying to use api that is from forge 1.19, e.g. import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; // <-- 1.12 import net.minecraftforge.eventbus.api.SubscribeEvent; // <-- 1.19 RegisterEvent was introduced in 1.19
  4. https://github.com/sp614x/optifine/issues/7127
  5. This is a crash within the java virtual machine - jvm.dll. You should report it on the link it shows. Looks like it has a problem reading one of the jar files and didn't handle the error properly. You can try a different version of java, such as: https://adoptium.net/ It might at least give you a better error message about the problem?
  6. Issue with the calio mod. Check you have the latest version, then contact the mod author.
  7. Issue with flywheel. Check you have the latest version then contact the mod author.
  8. Conflict between iris and oculus. Check you have the latest versions then contact the mod authors.
  9. https://github.com/sp614x/optifine/issues/7136
  10. You have mods that want a different (probably later) version of forge, try the latest version.
  11. You are trying to use a 1.19 mod with minecraft 1.18.2 You're actual crash is with the tetra mod: Check you have the latest version then contact the mod author.
  12. Looks like one of your mods has broken networking. The error message does not say which one. Probably the only way you will find it is to remove mods one-by-one until the problem goes away. If you are just starting with modded minecraft, I would suggest you use a prebuilt popular modpack that somebody else has tested They should have already removed all the bugs and incompatiblies. Otherwise you are going to spend a lot of time trying to do it yourself.
  13. Upgrade your java. The version you are using has expired trust certificates.
  14. Issue with the flywheel mod. Check you have the latest version then contact the mod author.
  15. You know when you create a falling block the actual fall will be delayed to later processing? So, it could be you are setting the block to air, then on a later tick the block is failling and creating the source block. Setting the block to stone would likely stop the falling block from creating the source block? Probably it tries to spawn the ItemEntity drop for water which doesn't have one.
  16. That effectively uses LiquidBlock.pickupBlock() - assuming you are dealing with a LiquidBlock? That calls setBlock() with flags = 11 while setBlockAndUpdate() calls setBlock() with flags = 3 Which means it is setting the "UPDATE_IMMEDIATE" flag as well - see the Block class. I don't know what difference that makes? It's not a flag I am familiar with.
  17. Conflict between iris and oculus. Check you have the latest version then contact the mod authors.
  18. We want the logs/debug.log which will contain any error if there is one. Crash or otherwise. But it sounds like you have something looping on the server thread? To diagnose that we need a thread dump: https://www.baeldung.com/java-thread-dump Or maybe the spark mod will tell you which mod is consuming a lot of time on the server thread: https://www.curseforge.com/minecraft/mc-mods/spark
  19. remove/destroyBlock() don't remove the fluid . Did you look at the code? Those methods are intended for things like breaking a waterlogged fence post. It will remove the post but leave the water behind. Try doing something like: Level.setBlockAndUpdate(pos, Blocks.AIR.defaultState());
  20. Issue with debugify mod. Check you have the latest version then contact the mod author.
  21. Issue with valhelsia core. Others have said it is known to conflict with optifine.
  22. Conflict between iris and rubidium. Check you have the latest version then contact the mod author.
  23. Not a 1.19.2 mod.

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.