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. Use java 17, mixin does not support java 20 And please don't post large files in the forum. Use a file upload site.
  2. Level.explode() when on the server. e.g. look at the PrimedTNT entity
  3. It's a file created when java hard crashes. https://docs.oracle.com/javase/7/docs/webnotes/tsg/TSG-VM/html/felog.html The top few lines has a summary of where it crashed. e.g. in the java virtual machine or your graphics card driver, etc.
  4. Since this is a server config, it will be in world/serverconfig instead of the config folder.
  5. https://minecrafthopper.net/help/exit-code/code-805306369/ You probably have a file beginning hs_err_pid in either your minecraft folder or launcher folder? If you do, just post the first 20 lines or so to see if that has some extra information. But I would guess you need to give it more memory.
  6. Check you have the latest versions then contact the mod author.
  7. Use the "issues" tab on curseforge: https://www.curseforge.com/minecraft/mc-mods/immersive-portals-mod You should research if it is already a known issue before duplicating bug reports. e.g.these are all the current "mod compatiblity" open issues for immersive portals: https://github.com/iPortalTeam/ImmersivePortalsMod/issues?q=is%3Aissue+is%3Aopen+label%3A"Mod+Compatibility"
  8. If you are iterating over tags, you are almost certainly doing it wrong. Tags are meant as a kind of flag to say "does this object have this property". They can change dynamically, e.g. if somebody changes and reloads datapacks while minecraft is running. That means you should not do any preprocessing or caching based on their values at any one specific point in time. If you really want to do it. For a datapack registry it looks something like this: @EventBusSubscriber(modid = MODID) public class Test { @SubscribeEvent public static void listBiomesTagKeys(ServerStartingEvent event) { var biomes = event.getServer().registryAccess().registryOrThrow(Registries.BIOME); biomes.getTagNames().forEach(tagKey -> LOG.info(tagKey.toString())); } }
  9. Then speak to the create mod authors. It is their mixin that is crashing when you try to view a map.
  10. Conflict between apoli and obscureapi. Check you have the latest versions of these mods then contact the mod authors.
  11. Something is taking too long on the server thread. You should have a crash report saying what the server thread is doing. There are lots of warning messages from valkyrenskies. Check you have the latest version of that mod then contact them.
  12. Issue with valhelsia_core, others have said it conflicts with optifine.
  13. Something is taking too long on the server thread. The only clue in that crash is it was doing something with block collision detection for a villager. That does not mean that was the cause. It's just what it was doing at the 60 second timeout. Try a mod like: https://www.curseforge.com/minecraft/mc-mods/spark to diagnose what is taking time on the server thread or otherwise stopping the server thread from progressing. Ask them for help if you can't figure out how to use it from their wiki.
  14. These are the forge support forums. We can't fix other people's mods. Only the mod author can do that.
  15. Looks like an issue with "imm_ptl_compat" whatever that is. Probably immersive portals, oculus or rubidium? Check you have the latest version of these mods then contact the mod authors. When you find out who it is, tell them to give their configuration files less ambiguous names so that others have a chance at debugging their broken mods.
  16. There is no crash in that log. If it is the full log, post the launcher_log.txt from directly after the crash.
  17. The crash is with immersive engineering, but it could also be with any of the other mods I have underlined. Check you have the latest versions of these mods then contact the mod authors.
  18. https://forge.gemwire.uk/wiki/Registration https://github.com/MinecraftForge/MinecraftForge/blob/8255d7aed3c44129bb08b7b5961f0e9fe3a5a121/src/main/java/net/minecraftforge/registries/DeferredRegister.java#L47
  19. What does the version have to do with it? The proposed solution is at the bottom. https://github.com/Creators-of-Create/Create/issues/4153#issuecomment-1356476914 Although the other solution is likely just to uninstall optifine or whatever other mod is causing the confict.
  20. https://github.com/MinecraftForge/MinecraftForge/blob/d448ffd5398151c14d4668e6798fac8e8b63e02d/src/main/java/net/minecraftforge/common/capabilities/CapabilityProvider.java#L173 e.g. https://github.com/mekanism/Mekanism/blob/c0c34e9bff3d2fd9088cc03f175adf4df291011c/src/main/java/mekanism/common/CommonPlayerTracker.java#L80
  21. Yes, so you can find all the different solutions that people have found to this long running driver bug.
  22. Why do you want me to wait? I can't fix AMD's graphics driver.

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.