Fix modded ore generation in Advanced Mining Dimension#38
Draft
Fix modded ore generation in Advanced Mining Dimension#38
Conversation
Co-authored-by: cwage <190973+cwage@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Modded/Forge ores don't spawn in mining dimension, vanilla ores only
Fix modded ore generation in Advanced Mining Dimension
Aug 29, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolves the issue where modded and Forge ores were not spawning in the Advanced Mining Dimension, with only vanilla ores generating at sparse rates.
Problem
The Advanced Mining Dimension was only generating vanilla ores (iron, coal, diamond, etc.) and missing all modded ores from installed mods like:
This significantly impacted late-game resource gathering efficiency since players couldn't obtain modded materials from the dedicated mining dimension.
Solution
Implemented a comprehensive multi-layered approach to ensure modded ore generation:
1. Direct Mod Configuration
Added
advanced-mining-dimension.tomlwith settings to:2. Comprehensive Datapack
Created
mining_dimension_modded_oresdatapack with multiple redundant approaches:Forge Biome Modifiers: Three different targeting strategies:
Worldgen Integration: Added modded ore features to the
underground_oresgeneration step, ensuring they spawn at appropriate depths alongside vanilla ores.3. Modded Ores Included
ore_osmium,ore_tin,ore_uraniumore_tin,ore_lead,ore_silver,ore_nickelTechnical Details
ftb_ultimine_ores_only)The multi-layered approach ensures compatibility regardless of how the Advanced Mining Dimension mod implements its biome system, providing redundant coverage to guarantee modded ore generation works reliably.
Fixes #37.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.