Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incompatible with Sound Physics Remastered #1503

Closed
Jemnand opened this issue May 26, 2024 · 10 comments
Closed

Incompatible with Sound Physics Remastered #1503

Jemnand opened this issue May 26, 2024 · 10 comments
Labels
type: bug Issue where something isn't working

Comments

@Jemnand
Copy link

Jemnand commented May 26, 2024

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

  1. Download the create mod 1.20.1 and Sound Physics Remastered 1.20.1
  2. Add both to your mod folder
  3. 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

@Jemnand Jemnand added the type: bug Issue where something isn't working label May 26, 2024
@drwoops
Copy link

drwoops commented May 26, 2024

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

@Jemnand
Copy link
Author

Jemnand commented May 26, 2024

Okay thanks for that quick response and that information. I wasn’t aware of that.

@IThundxr IThundxr closed this as not planned Won't fix, can't repro, duplicate, stale May 26, 2024
@AClon314
Copy link

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:

  1. Unzip create-fabric-0.5.1-f-build.1417+mc1.20.1.jar
  2. 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
  1. exec in shell: jar cvf create-fabric-0.5.1-f-build.1417+mc1.20.1_SPRfix.jar .

@Fyoncle
Copy link

Fyoncle commented Jul 28, 2024

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:

  1. Unzip create-fabric-0.5.1-f-build.1417+mc1.20.1.jar
  2. 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
  1. 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.

@monomere
Copy link

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": "*"
      }
    }
  }
}

@jacklollz2
Copy link

I'm using Quilt, how would I create the override? Also, it's annoying the mod hasn't updated yet to push this...

@drwoops
Copy link

drwoops commented Sep 9, 2024

I'm using Quilt, how would I create the override?

maybe check this: https://github.com/QuiltMC/quilt-loader/wiki/Dependency-Overrides

@jacklollz2
Copy link

I tried as best I could but everything is obscured and confusing.

@Yummy-cookie
Copy link

forge how to change

@nobully-osu
Copy link

nobully-osu commented Nov 1, 2024

I'm using Quilt, how would I create the override? Also, it's annoying the mod hasn't updated yet to push this...

Using a loader override like fabric but slightly different. Try this:

{
    "schema_version": 1,
    "overrides": [
      {
        "path": "<mods>/create-fabric-0.5.1-f-build.1417+mc1.20.1.jar",
        "breaks": {
          "remove": {
            "id": "sound_physics_remastered",
            "versions": "*"
          }
        }
      }
    ]
  }

For easy convenience:
quilt-loader-overrides.json

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: bug Issue where something isn't working
Projects
None yet
Development

No branches or pull requests

9 participants