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. Does that even compile? You are using the AWT event when you should be using the forge event.
  2. https://forge.gemwire.uk/wiki/Sides
  3. https://github.com/sp614x/optifine/issues/6974
  4. Click on the link above and follow the instructions the mod author provided to fix the problem.
  5. Their bug report has a template, make sure you give them a link to that dump.
  6. If you want to look at examples, look at the datapack files inside the minecraft jar.
  7. 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
  8. The information is in that link. Search for tags.
  9. https://forge.gemwire.uk/wiki/Making_Tools
  10. 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.
  11. https://github.com/FlashHUN/FlashNPCs/issues/22
  12. 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
  13. https://forums.minecraftforge.net/topic/113444-storing-constant-data-in-a-json-file/#comment-504361
  14. You should probably log out of minecraft account and relog just to be sure.
  15. Somebody needs to edit the above post to remove the access token information.
  16. 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.
  17. Fabric mod.
  18. Is your user allowed to add files to the root of the c drive? Try specifying your home folder or your desktop folder. Quoting that link above: If this happened you can type %TEMP% into the location bar of windows explorer to find your temporary directory.
  19. My insight would be good luck. ๐Ÿ™‚ I am far from an expert on chunk loading, but here's some observations: * The chunk loading is pretty hard code to understand. Its partially asynchronous and has shared code between the client and server sides, but they use it in different ways. * Its made harder when you consider other mods are changing what it does, e.g. optimisations to lighting or just speeding up chunk loading in general * The world save is split into "World" data and "Level" data. Its confusing, because forge used to call what is now called the level, the world. ๐Ÿ™‚ The world data is typically only reloaded at game restart, e.g. restarting the server. Things could go wrong if these are inconsistent because you only backdated the level data. * DIM0 (now called minecraft:overworld) is normally never unloaded (even if it has no players) because of the spawn chunks. Then there is the usual rule. "Don't fix what is not broken". Is a server restart really that slow that you want to risk world breaking bugs in your new code? Kind of defeats the point of what backups are supposed to achieve. You might test it extensively during initial development. But when Mojang makes changes to it in future (that might be quite subtle) are you going to want to repeat the process?
  20. If you can't find it, you should be able to specify where it puts the file. e.g. add the something like the following to your java parameters in the launcher replace "path/to" with a folder that exists. See: https://docs.oracle.com/en/java/javase/17/docs/specs/man/java.html for more information. Then try to launch minecraft again, it should put the file where you told it.
  21. As it says, this is an issue with "Danny's Expansion". You seem to have the latest version and its dependency "BrainCellAPI". Report the problem to the mod author.
  22. You will usually be told the position of the relevant block (actually the BlockState) in whatever callback you define. e.g. if somebody right clicks your block the following method is invoked on your block (the BlockPos contains the x,y,z) public InteractionResult use(BlockState p_60503_, Level p_60504_, BlockPos p_60505_, Player p_60506_, InteractionHand p_60507_, BlockHitResult p_60508_) {
  23. IndustrialForegoing needs the titanium mod: https://www.curseforge.com/minecraft/mc-mods/industrial-foregoing/relations/dependencies?filter-related-dependencies=3
  24. The mod mantle doesn't work with forge 40.1.0, you can either; * Upgrade forge * Remove mantle * Ask the mod author if there is a version that works with 40.1.0
  25. The hs_err_pid is nearly a year old. ๐Ÿ™‚

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.