Cotton

Cotton

148k Downloads

crash with 1.16.2

Nathan22211 opened this issue ยท 2 comments

commented

Describe the bug
game crashes on startup with exit code -1

To Reproduce
Steps to reproduce the behavior:

  1. launch the game with cotton and fabric API in the mods folder
  2. it should crash

Expected behavior Optional
should launch without issue

Screenshots Optional
If applicable, add screenshots to help explain your problem.

Version of the (please complete the following information):

  • Cotton 1.0.7
  • Fabric API 0.9.2+build.206
  • Minecraft 1.16.2

Additional context Optional
here's a crash log, it mentions cotton cauldron and libCD in it. If it's set to secret by mistake just inform me https://gist.github.com/Nathan22211/7ed916b7f5cc0441d69c015c3e11ea4f

commented

Cotton needs to be converted over to LibDP. I'll do that when I have time.

commented

As a quick workaround, you can manually upgrade the Jankson dependency and keep the older version of LibCD so the cauldron module still loads properly.
I used this snippet:

dependencies {
    // ...

    modImplementation 'io.github.cottonmc.cotton:cotton:1.0.7'
    include 'io.github.cottonmc.cotton:cotton:1.0.7'

    modImplementation 'io.github.cottonmc:Jankson-Fabric:3.0.1+j1.2.0'
    include 'io.github.cottonmc:Jankson-Fabric:3.0.1+j1.2.0'

    // ...
}