Some recipes are missing
calloatti opened this issue ยท 11 comments
Test scenario:
Minecraft: 1.18.2
Loader: FABRIC 0.14.8
Mods
- 001 Additional Additions | Fabric: AdditionalAdditions-4.0.5.jar (1.18.2)
- 002 Roughly Enough Items Fabric/Forge (REI): RoughlyEnoughItems-8.3.510.jar (1.18.2)
APIs/LIBs
- 003 Architectury API (Fabric/Forge): architectury-4.6.77-fabric.jar (1.18.2)
- 004 Cloth Config API (Fabric/Forge): cloth-config-6.2.62-fabric.jar (1.18.2)
- 005 Fabric API: fabric-api-0.58.0+1.18.2.jar (1.18.2)
Missing recipes:
Trident Shard
Depth Meter
Gold Ring
Checking the jar file, confirmed that those are missing in data\additionaladditions\recipes
Should have read the wiki first. Only the Depth Meter recipe is missing, since the other 2 are drops/trade items.
This is it: https://paste.ee/p/FKtDl
The config is the default one, to be sure I deleted everything in the config folder and restarted MC, still missing the depth meter recipe.
Just a wild guess here since I know nothing about Java, but maybe this line:
case "depth_meter" -> { if (!Config.getBool(ConfigValues.DEPTH_METER)) toRemove.add(identifier); }
Should be:
case "depth_meter" -> { if (!Config.getBool(ConfigValues.DEPTH_METER, "enabled")) toRemove.add(identifier); }
In
Sure! It's all played on Minecraft 1.19 with Fabric Loader 0.14.8
AA version is 5.0.1. Here are the latest.log and the config in txt format:
@kxkxrxtx Can you send your config & additional additions version & minecraft version & latest log?
When is this going to be backported to the 1.18.2 branch? It's still an issue unfortunately.
Just a wild guess here since I know nothing about Java, but maybe this line:
case "depth_meter" -> { if (!Config.getBool(ConfigValues.DEPTH_METER)) toRemove.add(identifier); }
Should be:
case "depth_meter" -> { if (!Config.getBool(ConfigValues.DEPTH_METER, "enabled")) toRemove.add(identifier); }
In
This actually does fix the problem as I just tested it, all I had to do was add the, "enabled"
part and build the mod and it fixed the problem