Replacing ores breaks recipes with the ingots from the raw material that those ores drop. #7

Closed
opened 2026-06-30 12:23:31 -06:00 by Matu645 · 1 comment

Mod Loader

NeoForge 1.21.1

Mod Version

1.3.1

Crash Log / Error Output

https://mclo.gs/w6UW8aX

Bug Description

While using remapids for the first time, I created this file to unify ores:

{
"remaps": [
{
"source": "mekanism:_ore",
"target": "alltheores:
_ore",
"types": ["item", "block", "recipe", "loot_table", "tag"]
}
]
}

When running it, all recipes that use ingots from mekanism ores stop working, this might be connected to the fact that I used almostunified and mekanism ingots get redirected to another mod's

Steps to Reproduce

  1. Cope-paste the script above.
  2. Use almost unified and put modernelements at the top of the list
  3. See how many recipes involving mekanism materials (ex. Osmium) are not working (The issues stop when remapids is removed)

Other Mods Installed

Almost Unified, Mekanism, Modern Elements, Mekanism: Elements, KubeJS

### Mod Loader NeoForge 1.21.1 ### Mod Version 1.3.1 ### Crash Log / Error Output https://mclo.gs/w6UW8aX ### Bug Description While using remapids for the first time, I created this file to unify ores: { "remaps": [ { "source": "mekanism:*_ore", "target": "alltheores:*_ore", "types": ["item", "block", "recipe", "loot_table", "tag"] } ] } When running it, all recipes that use ingots from mekanism ores stop working, this might be connected to the fact that I used almostunified and mekanism ingots get redirected to another mod's ### Steps to Reproduce 1. Cope-paste the script above. 2. Use almost unified and put modernelements at the top of the list 3. See how many recipes involving mekanism materials (ex. Osmium) are not working (The issues stop when remapids is removed) ### Other Mods Installed Almost Unified, Mekanism, Modern Elements, Mekanism: Elements, KubeJS

you failed to use regex correctly. Please correct it and reply if the issue persists

"source": "mekanism:_ore",
"target": "alltheores:_ore",

would become

"source": "mekanism:_ore",
"target": "alltheores:
_ore",

you failed to use regex correctly. Please correct it and reply if the issue persists "source": "mekanism:_ore", "target": "alltheores:_ore", would become "source": "mekanism:*_ore", "target": "alltheores:*_ore",
Sign in to join this conversation.
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
TysonTheEmber/RemapIDs#7
No description provided.