Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Articdive committed Feb 4, 2024
1 parent 5eb8e35 commit 58fdabc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Adding to a Maven Project:
<dependency>
<groupId>de.articdive</groupId>
<artifactId>articdata</artifactId>
<version>1.18.2-77b86bc4</version>
<version>1.18.2-cb27856f</version>
</dependency>
</dependencies>
```
Expand All @@ -69,7 +69,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation("de.articdive:articdata:1.18.2-77b86bc4")
implementation("de.articdive:articdata:1.18.2-cb27856f")
}
```

Expand Down
20 changes: 10 additions & 10 deletions 1_18_2_loot_tables/1_18_2_chest_loot_tables.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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": {
Expand All @@ -3773,7 +3773,7 @@
}
},
{
"type": "minecraft:night_vision",
"type": "minecraft:jump_boost",
"duration": {
"type": "minecraft:uniform",
"min": 7.0,
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
tasks {
register<Jar>("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)
Expand All @@ -20,7 +20,7 @@ publishing {
create<MavenPublication>("maven") {
groupId = "de.articdive"
artifactId = "articdata"
version = "1.18.2-77b86bc4"
version = "1.18.2-cb27856f"

pom {
name.set("ArticData")
Expand Down

0 comments on commit 58fdabc

Please sign in to comment.