[API USE] Issues loading mods in 2020.4 with 1.15.2

Started by znaxcy on

Topic category: Advanced modding

Last seen on 17:59, 23. Sep 2021
Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
[API USE] Issues loading mods in 2020.4 with 1.15.2

Returning to MCreator after a year or so and getting used to some changes, but need some more advanced help: I'm trying to bring in the Serene Seasons API.

I've done it before in older versions by adding:

dependencies {
    compile 'serene-seasons:SereneSeasons-1.15.2:3.0.0.73:universal'
}

to build.gradle.

Great, ran a successful build.

Then I go to run the game (with SereneSeasons-1.15.2.3.0.0.73.universal.jar in the mods folder of the run folder in the workspace) and the game loads almost all the way through, then a screen tells me: [ss] has failed to load correctly field_180291_a. Gives me an option for latest log or to open the mods folder. At first, I thought this was an incompat forge version. So I loaded up MultiMC with a fresh install of MC 1.15.2.0 and 31.2.0 and with the same SS mod jar it ran no problem. Any ideas on what I could be missing here?

 

(I should note that without using the dependency line in build.gradle this same thing happens in the workspace run, all with this mod alone, in combination with other mods and with other mods alone.)

 

Thanks to anyone who can help!

Last seen on 17:59, 23. Sep 2021
Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
My current guess is that…
Fri, 08/14/2020 - 04:44

My current guess is that mcreator has prevented the access transformers Serene Seasons has from being applied. I don't know how to fix this though, so anyone with a better understanding of what might be causing that will have to weigh in before I think I'll be able to find a fix.

and the game loads almost…
Fri, 08/14/2020 - 04:58

and the game loads almost all the way through, then a screen tells me: [ss] has failed to load correctly field_180291_a

Mod was not made for the Forge version used

Last seen on 17:59, 23. Sep 2021
Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Thanks for responding. How…
Fri, 08/14/2020 - 05:09

Thanks for responding.

How might I be able to upgrade the workspace's forge version? A plugin with a generator for the new forge?

Yes, or modifiy the current…
Fri, 08/14/2020 - 05:27

Yes, or modifiy the current one, just don't redistribute the modified version to not violate current EULA

But things might break, as…
Fri, 08/14/2020 - 05:27

But things might break, as generator was made and tested for the version it uses

Last seen on 17:59, 23. Sep 2021
Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Thanks! Unfortunately, it…
Fri, 08/14/2020 - 14:44

Thanks!

Unfortunately, it didn't work:

I changed the forge version in the build.gradle to the latest (31.2.36), made sure forge version checking was disabled and ran the game from the workspace with no mods in the run/mods folder.

I verified on the home screen that it'd loaded the new version, quit the game, added the mods to the workspace/run/mods folder and ran again, with the repository added to the build.gradle.

Same error as above with access transformer issue.

I produced normal functionality with the same version of the Serene Seasons mod on a normal boot of the game via MultiMC with the same versions of MC and Forge (both 31.2.0 and 31.2.36.)

Last seen on 17:59, 23. Sep 2021
Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I appear to have fixed the…
Fri, 08/14/2020 - 16:02

I appear to have fixed the issue:

Instead of using this line of code under dependency in build.gralde:

compile 'serene-seasons:SereneSeasons-1.15.2:3.0.0.73:universal'

I put

runtimeOnly fg.deobf("serene-seasons:SereneSeasons-1.15.2:3.0.0.73:universal")
compileOnly fg.deobf("serene-seasons:SereneSeasons-1.15.2:3.0.0.73:api")

Ran fine. Not sure how the details worked, but I appear to be up and running with this particular API. At least so far...