From c744ff2b9aec5ec4f54a397ba19ba56df4b29bd9 Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Sat, 30 Mar 2024 00:17:17 -0700 Subject: [PATCH] Fix hammer and crook not working. Closes #62 --- build.gradle | 3 ++- .../loot_modifiers/global_loot_modifiers.json | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename src/main/resources/data/{forge => neoforge}/loot_modifiers/global_loot_modifiers.json (100%) diff --git a/build.gradle b/build.gradle index fa5df5ee..f9527607 100644 --- a/build.gradle +++ b/build.gradle @@ -36,10 +36,11 @@ runs { // Include resources generated by data generators. sourceSets.main.resources { srcDir 'src/generated/resources' } // Exclude KubeJS compat till they update todo remove when KubeJS updates +// If IntelliJ ignores this, you have to change Gradle settings to build projects using Gradle instead of IntelliJ sourceSets { main { java { - exclude 'thedarkcolour/exdeorum/compat/kubejs/*' + exclude 'thedarkcolour/exdeorum/compat/kubejs/' } } } diff --git a/src/main/resources/data/forge/loot_modifiers/global_loot_modifiers.json b/src/main/resources/data/neoforge/loot_modifiers/global_loot_modifiers.json similarity index 100% rename from src/main/resources/data/forge/loot_modifiers/global_loot_modifiers.json rename to src/main/resources/data/neoforge/loot_modifiers/global_loot_modifiers.json