Create: Steam Powered

Create: Steam Powered

1M Downloads

[Bug] Create update broke Flywheel dependency

FemBane opened this issue · 6 comments

commented

Error Behaviour

image
Create Updated to Flywheel 6.11-13

Expected Behaviour

Update the upper bound for Flywheel versions

Reproduce

Install Create 1.20.1 v0.5.1h and steampowered-1.20.1-3.0.1.jar
This will happen

Crash Report

No response

Mod version

3.0.1

Server version

No response

Other mods and plugins

No response

commented

bump

commented

Follow up ⬆️

commented

I just want my boilers ;(

commented

Im also having the same issue

commented

Mods should not depend on the dependencies of other mods when they already depend on the mod. Depending on create 0.5.1+ already implies a dependency on flywheel.
The project does not seem to reference the flywheel library at all (no reference to dev.engine_room.flywheel), which means an explicit dependency is just harmful. If create decides to remove flywheel in a minor update, this mod would break again. Having it in the build.gradle is more than sufficient.

For people that look for a temporary fix:
You can open the steampowered jar file and edit the mods.toml inside the META-INF directory.
In there you can either remove the whole dependency block for flywheel or change the version requirement for flywheel from the old

    versionRange="[0.6.10,0.6.11)"

to something like this:

    versionRange="[0.6.10,)"

The jar file is not signed, so editing its content is fine for personal use.

commented

Same