Jump to content

DragonBorn

Members
  • Posts

    2
  • Joined

  • Last visited

DragonBorn's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. I try add my mod(mavenLocal) to in the dependency, in another my mod: minecraftLibrary("net.dragonborn:lupin:1.12.4") { exclude("net.minecraftforge") } And i get exception, when open my screen:
  2. Hello, i have a multi-module project: include ':core' include ':tech' include ':rpg' Core module is a base version for all modules(how library, but it's independed mod). Tech/Rpg module is a child of Core. Using in builds scripts: tech -> build.gradle implementation project(':core') rpg -> build.gradle implementation project(':core') And i have KotlinAdapter(yes, it's a mod written on Kotlin language), spoiler: this adapter work for core, but when a execute Intellij Idea task for run tech module("tech runClient") i take a exception with error: "adapter.kotlin.KotlinModContainer cannot be cast to net.minecraftforge.fml.ModContainer". But, when execute runClient(gradle task) it's work without of exception. How to i can execute Intellij Idea task for run my Tech and Rpg mods with Core mod in dependencies? When run Intellij task "tech runClient" threads: "Loading KotlinModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@47148f3f - got sun.misc.Launcher$AppClassLoader@18b4aac2" When run Gradle task ":tech:runClient" threads: "Loading KotlinModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@47148f3f - got cpw.mods.modlauncher.TransformingClassLoader@47148f3f"
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.