FabricMC / fabric-language-kotlin

Fabric language module for Kotlin.
Apache License 2.0
299 stars 33 forks source link

UnsupportedOperationException error, removing kotlin 1.4.31 fixes it #44

Closed hgorski6 closed 3 years ago

hgorski6 commented 3 years ago

Crash log https://pastebin.com/3hjdbAT4

Juuxel commented 3 years ago

Based on the log, this seems to be related to CBT/Connected Block Textures instead of Fabric Language Kotlin.

    at com.google.common.collect.ImmutableCollection.add(ImmutableCollection.java:218)
    at net.minecraft.class_3304.handler$zpd000$injectCBTPack(class_3304.java:2029)
    at net.minecraft.class_3304.method_18232(class_3304.java)

where class_3304.method_18232 is ReloadableResourceManagerImpl.beginMonitoredReload

hgorski6 commented 3 years ago

Based on the log, this seems to be related to CBT/Connected Block Textures instead of Fabric Language Kotlin.

  at com.google.common.collect.ImmutableCollection.add(ImmutableCollection.java:218)
  at net.minecraft.class_3304.handler$zpd000$injectCBTPack(class_3304.java:2029)
  at net.minecraft.class_3304.method_18232(class_3304.java)

where class_3304.method_18232 is ReloadableResourceManagerImpl.beginMonitoredReload

Removing the mod has solved the issue, Thank you