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 are missing the mrcrayfish framework mod.
  2. Most 1.19.2 mods won't work with 1.19.3 Mojang changed how the Creative Mode Inventory Screen works and mods need to update to the new way.
  3. If you are posting compiler errors, you are in the wrong forum. You want a "learning java" forum. You are also posting a question about an unsupported (in this forum) version of minecraft. https://forums.minecraftforge.net/topic/91712-supported-version-directory/
  4. Here's an example from the vanilla datapack I linked to earlier: https://github.com/misode/mcmeta/blob/e7034dbd1f202250fbae9e6e155a5d76e3d30450/data/minecraft/dimension/the_end.json#L4 or this is how that DebugLevelSource is specified in a WorldPreset https://github.com/misode/mcmeta/blob/e7034dbd1f202250fbae9e6e155a5d76e3d30450/data/minecraft/worldgen/world_preset/debug_all_block_states.json#L6 You have now reached my limit of wanting to help you. You seem to expect to be treated like a baby. i.e. you want me to feed you with a spoon instead of you feeding yourself.
  5. I don't see the point of providing you with links to documentation if you don't read them.
  6. Issue with oculus. Check you have the latest version the contact the mod author.
  7. If that really is the full log, post a link to your launcher_log.txt directly after the crash without restarting the launcher.
  8. https://github.com/YouStones/chemcraft/blob/adf573c6661fdf81feaad4c3e2c235e0ea9fceac/src/main/java/com/example/chemcraft/setup/ModItems.java#L13 You are registering your item to Registrations.ITEMS. But the DeferredRegister you are registering with forge is ModItem.ITEMS
  9. It is you that specifies how the chunk generator gets constructed in the codec you register. i.e. which parameters it needs either from the json or other sources Compare for example the previously mentioned DebugLevelSource that takes a single (hardcoded) biome vs the full NoisedChunkBasedGenerator that takes a BiomeSource and noise settings. If you want a codec that takes no parameters look at for example the NoneFeatureConfiguration.CODEC Codecs in general: https://forge.gemwire.uk/wiki/Codecs You don't create the level. The level uses you based on your generator being configured for the Dimension/WorldPreset.
  10. This is crash in the java virtual machine. You need to report this to Microsoft. Or you can try a different version of java, e.g. https://adoptium.net/
  11. Issue with your graphics driver. Make sure you are using the latest version of the driver. Sometimes if a new version of the driver has introduced bugs, downgrading to a previous version of the driver can fix problems. Otherwise contact nvidia.
  12. All this effort over something that is 2 or 3 lines of code. Other people seem to be able to work it out just fine? https://github.com/search?q=CHUNK_GENERATOR_REGISTRY&type=code
  13. From the link I posted above: There is no need to add those extra features for chunk generators so you just use the vanilla resource key.
  14. Issue with the oculus mod. Check you have the latest version then contact the mod author.
  15. Issue with the extractinator mod. Check you have the latest version then contact the mod author.
  16. Hmmm. You want to modify worldgen, but you don't even know how to register an object in forge? You are going to break people's worlds. ๐Ÿ˜ž https://forge.gemwire.uk/wiki/Registration The ResourceKey you want is the "suprisingly" named: net.minecraft.core.Registry.CHUNK_GENERATOR_REGISTRY
  17. Like I said, you can create your own ChunkGenerator, register it, then use it. See Mojang's stand up test, DebugLevelSource for something similar to what you describe. Another way is to do something like VoidStartPlatformFeature in a void dimension if you are trying to create some kind of "skyblock". Or you can use a Structure instead.
  18. You can do this with datapacks. Your mod is a datapack, just add the files to src/main/resources/data Wiki documenting the worldgen json format: https://minecraft.fandom.com/wiki/Custom_world_generation A gui for generating datapack jsons in general: https://misode.github.io/ The vanilla "builtin datapack" if it had been written in json: https://github.com/misode/mcmeta/tree/data/data/minecraft Each json can be done in java code instead. Just register the corresponding object using the standard forge DeferredRegister/RegistryObject mechanism. Things like a new ChunkGenerator implementation need to be written in code. You still register the object(s) in the same way and then reference it from your datapack.
  19. One of your config files is invalid/corrupted. You can find it in the config subfolder. If you don't have a backup of the file, you can delete it and it should be recreated with default values.
  20. https://forums.minecraftforge.net/topic/119038-1192-failed-to-run-example-mod-on-fresh-setup/#comment-522788
  21. The "minVersion" thing is not a real error. It is really a warning to the developer that mixin cannot check things. If you don't post your updated log we cannot help you. The logs/debug.log so we can see can see which mods you have installed. Forge would normally tell you which mod is requiring the missing dependency and what version it wants. But one of your mods has a broken mixin that is crashing the game before forge can do that. It's probably from the same mod. The debug.log might say which mixin is causing the problem? Failing that, you will need to start again. Add and test mods "one-by-one". That way you will know which mod is causing the problem. It is the mod you just added.
  22. You can't run a directory. ๐Ÿ™‚ It should be:
  23. Replace where it says java with "c:\full path to\java folder\bin\java.exe" where the quotes are important if the directory includes spaces like my example.
  24. You are missing or have the wrong versions of structurize and blockui mods. You have 2 mods that want a different (probably more recent?) version of forge.

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.