Jump to content

warjort

Members
  • Posts

    5420
  • Joined

  • Last visited

  • Days Won

    175

Everything posted by warjort

  1. Ironically, you can do the opposite with the ScreenEvent.MouseClickedEvent.Pre The only way I can think of doing this to use Minecraft.getScreen() and test if it is null (i.e. no gui screen)?
  2. If its not that, you will need to post a screenshot to explain what you are looking at.
  3. Do you mean the first page after you click "installer"? That is an ad. After 5 seconds you should see a "skip" button appear in the top right corner. It explains it at the top of the page.
  4. You are trying to use shortcuts in your mod folder. This is not supported. Forge needs the real jar in the mod folder. It will only load files that end with .jar, shortcuts end with .lnk
  5. This sounds like one of your mods is looping or something has stopped working without reporting an error and not crashing the game? The last entries in the log are some periodic stuff related to refined storage: some of these are spaced seconds apart which suggests the server thread is still working. My suggestion would be uninstall optifine, to see if that fixes your problem. That is always the first candidate when weird things happen. 🙂 If you have other graphics optimisation mods you can try removing those as well.
  6. Looks like you uninstalled some mods and then tried to access a world that uses those mods for world generation. In particular blues_skies and dimdungeons.
  7. Your question is unanswerable. You need to explain better what the problem is. The log does not match what you are talking about. There is nothing related to an immersive engineering error. There is this: ```` [19Jul2022 12:19:24.041] [Render thread/ERROR] [net.minecraftforge.common.loot.LootModifierManager/]: Couldn't parse loot modifier upgradednetherite:fortune_tool java.lang.NullPointerException: Cannot invoke "com.google.gson.JsonElement.isJsonObject()" because "element" is null ```` Which means the mod author for updgradednetherite has a badly written loot table json. But this does not stop the game loading from what I can see?
  8. Answered in the link. You should use the recommended methods.
  9. Does that even compile? You are using the AWT event when you should be using the forge event.
  10. https://forge.gemwire.uk/wiki/Sides
  11. https://github.com/sp614x/optifine/issues/6974
  12. Click on the link above and follow the instructions the mod author provided to fix the problem.
  13. Their bug report has a template, make sure you give them a link to that dump.
  14. If you want to look at examples, look at the datapack files inside the minecraft jar.
  15. This is a support forum not a teaching forum. If you want to write a mod you need to understand it, not copy/paste. You will need to be able to support your mod when bugs happen. Anyway, adding tags is the same as datapacks (except your mod is a datapack already so you can add files to src/main/resources/data) https://minecraft.fandom.com/wiki/Tag Alternatively you can use "Data Generation": https://forge.gemwire.uk/wiki/Main_Page
  16. The information is in that link. Search for tags.
  17. https://forge.gemwire.uk/wiki/Making_Tools
  18. As the error says, you have a broken config/kiwi-client.toml This is usually caused because windows didn't shutdown properly. In my version of ATM 7 this file is not modified by the modpack author, so you can just delete the file and it will be recreated with default values.
  19. https://github.com/FlashHUN/FlashNPCs/issues/22
  20. You might want to look at MinecraftServer.setInitialSpawn()/PlayerRespawnLogic.getOverworldRespawnPos() Its doesn't solve your problem directly, but you may be able to adapt some of the logic to what you need. e.g. * Using the Heightmap.TYPES * Using a mutable BlockPos for performance * Determining which blocks/positions are valid player spawn points
  21. https://forums.minecraftforge.net/topic/113444-storing-constant-data-in-a-json-file/#comment-504361
  22. You should probably log out of minecraft account and relog just to be sure.
  23. Somebody needs to edit the above post to remove the access token information.
  24. This is a crash within java itself. (jvm.dll) You will need to report it to microsoft using the link above. You could try using a different java implementation, e.g. https://adoptium.net/ You change which java to use in the same place you modified the java arguments.
  25. Fabric mod.
×
×
  • Create New...

Important Information

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