Not Enough Crashes (Fabric)

Not Enough Crashes (Fabric)

4M Downloads

NEC uses a hack to get common asset files when running in dev

natanfudge opened this issue ยท 1 comments

commented
task copyAssetFilesForDebugging(type: Copy) {
    def inAssets = rootProject.file("common/src/main/resources/assets/notenoughcrashes")
    def outAssets = new File("${project.buildDir}/resources/main/assets/notenoughcrashes")
    from inAssets
    into outAssets
    dependsOn rootProject.processResources
}

In the Architectury example mod, common assets work fine in dev without this.
We need to figure out how to have it work like the example mod, without that hack.

commented

Not needed anymore.