diff --git a/.github/README.md b/.github/README.md index 33b1afa..3485afc 100644 --- a/.github/README.md +++ b/.github/README.md @@ -57,7 +57,7 @@ Adding to a Maven Project: de.articdive articdata - 1.18.2-77b86bc4 + 1.18.2-cb27856f ``` @@ -69,7 +69,7 @@ repositories { mavenCentral() } dependencies { - implementation("de.articdive:articdata:1.18.2-77b86bc4") + implementation("de.articdive:articdata:1.18.2-cb27856f") } ``` diff --git a/1_18_2_loot_tables/1_18_2_chest_loot_tables.json b/1_18_2_loot_tables/1_18_2_chest_loot_tables.json index 056c503..2deed23 100644 --- a/1_18_2_loot_tables/1_18_2_chest_loot_tables.json +++ b/1_18_2_loot_tables/1_18_2_chest_loot_tables.json @@ -3740,14 +3740,6 @@ { "function": "minecraft:set_stew_effect", "effects": [ - { - "type": "minecraft:poison", - "duration": { - "type": "minecraft:uniform", - "min": 10.0, - "max": 20.0 - } - }, { "type": "minecraft:weakness", "duration": { @@ -3757,13 +3749,21 @@ } }, { - "type": "minecraft:jump_boost", + "type": "minecraft:night_vision", "duration": { "type": "minecraft:uniform", "min": 7.0, "max": 10.0 } }, + { + "type": "minecraft:poison", + "duration": { + "type": "minecraft:uniform", + "min": 10.0, + "max": 20.0 + } + }, { "type": "minecraft:saturation", "duration": { @@ -3773,7 +3773,7 @@ } }, { - "type": "minecraft:night_vision", + "type": "minecraft:jump_boost", "duration": { "type": "minecraft:uniform", "min": 7.0, diff --git a/build.gradle.kts b/build.gradle.kts index 2525785..832f9da 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ plugins { tasks { register("packageVersion") { archiveBaseName.set("articdata") - archiveVersion.set("1.18.2-77b86bc4") + archiveVersion.set("1.18.2-cb27856f") destinationDirectory.set(layout.buildDirectory.dir("dist")) from(project.rootProject.rootDir) @@ -20,7 +20,7 @@ publishing { create("maven") { groupId = "de.articdive" artifactId = "articdata" - version = "1.18.2-77b86bc4" + version = "1.18.2-cb27856f" pom { name.set("ArticData")