Incompatible with Sound Physics Remastered
Jemnand opened this issue · 10 comments
Describe the Bug
I tried launching the game with a small mod pack that contained the create mod and Sound Physics Remastered, the fabric loader gave me the information that I have to remove one of those mods to make the other one work properly. Is that a bug or a wanted occurrence? Thanks for helping me out.
Reproduction Steps
- Download the create mod 1.20.1 and Sound Physics Remastered 1.20.1
- Add both to your mod folder
- Launch the game and the error should occur
...
Expected Result
I expected the game to launch normally and that I would have been able to enjoy both mods with my friends.
Screenshots and Videos
I will add those when I gathered some.
Crash Report or Log
No response
Operating System
Windows 10 pro
Mod Version
0.5.1f
Minecraft Version
1.20.1
Other Mods
As the error didn’t mention any other mods, a list of all the mods that were contained in the mod pack would just extend your capabilities and take too much time for you to review. Thanks for understanding.
Additional Context
No response
sound physics remastered fixed the issue like... yesterday. so create has not yet been updated to allow SPR >=1.4.0.
you could do it yourself: https://fabricmc.net/wiki/tutorial:dependency_overrides
sound physics remastered fixed the issue like... yesterday. so create has not yet been updated to allow SPR >=1.4.0.
you could do it yourself: https://fabricmc.net/wiki/tutorial:dependency_overrides
In shorts:
- Unzip
create-fabric-0.5.1-f-build.1417+mc1.20.1.jar
- remove line 71 in
fabric.mod.json
"breaks": {
"optifabric": "*",
"colormatic": "\u003c\u003d3.1.1",
"iris": "\u003c\u003d1.2.5",
"sodium": "\u003c\u003d0.4.10",
"sound_physics_remastered": "*", // Remove this line
- exec in shell:
jar cvf create-fabric-0.5.1-f-build.1417+mc1.20.1_SPRfix.jar .
sound physics remastered fixed the issue like... yesterday. so create has not yet been updated to allow SPR >=1.4.0.
you could do it yourself: https://fabricmc.net/wiki/tutorial:dependency_overridesIn shorts:
- Unzip
create-fabric-0.5.1-f-build.1417+mc1.20.1.jar
- remove line 71 in
fabric.mod.json
"breaks": { "optifabric": "*", "colormatic": "\u003c\u003d3.1.1", "iris": "\u003c\u003d1.2.5", "sodium": "\u003c\u003d0.4.10", "sound_physics_remastered": "*", // Remove this line
- exec in shell:
jar cvf create-fabric-0.5.1-f-build.1417+mc1.20.1_SPRfix.jar .
You can just do this in fabric preferences on the config file, you don't need to edit the mod files, this wouldn't be suitable for a modpack.
Instead of editing mod files, you can create a file called fabric_loader_dependencies.json
in the .minecraft/config/
folder (create it if its not there) with this content:
{
"version": 1,
"overrides": {
"create": {
"-breaks": {
"sound_physics_remastered": "*"
}
}
}
}
I'm using Quilt, how would I create the override? Also, it's annoying the mod hasn't updated yet to push this...
I'm using Quilt, how would I create the override?
maybe check this: https://github.com/QuiltMC/quilt-loader/wiki/Dependency-Overrides