diff --git a/build.gradle b/build.gradle index 26067e9..e6b8c87 100644 --- a/build.gradle +++ b/build.gradle @@ -85,6 +85,16 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { } } +task copyTask(type: Copy) { + from 'build/libs' + include 'bone-1.0.0.jar' + into '/home/badtz/.config/gdlauncher_next/instances/bone modpack/mods' +} + +if (System.getProperty('user.name').equals('badtz')) { + build.finalizedBy copyTask +} + java { // Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task // if it is present. diff --git a/src/main/resources/assets/bone/textures/block/bone_forge.png b/src/main/resources/assets/bone/textures/block/bone_forge.png index 6ff0051..ed48e4f 100644 Binary files a/src/main/resources/assets/bone/textures/block/bone_forge.png and b/src/main/resources/assets/bone/textures/block/bone_forge.png differ