Skip to content

Commit c04f3bb

Browse files
authored
fix: inventory type (#25)
* fix: inventory type * Update build.gradle.kts * Update README.md
1 parent a0dcc03 commit c04f3bb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ repositories {
2121
}
2222

2323
dependencies {
24-
implementation("com.github.DebitCardz:mc-chestui-plus:1.4.6")
24+
implementation("com.github.DebitCardz:mc-chestui-plus:1.4.7")
2525
}
2626
```
2727
### Maven
@@ -34,7 +34,7 @@ dependencies {
3434
<dependency>
3535
<groupId>com.github.DebitCardz</groupId>
3636
<artifactId>mc-chestui-plus</artifactId>
37-
<version>1.4.6</version>
37+
<version>1.4.7</version>
3838
</dependency>
3939

4040
```

build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ val githubActor = project.findProperty("gpr.user") as String? ?: System.getenv("
88
val githubToken = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")
99

1010
group = "me.tech"
11-
version = "1.4.6"
11+
version = "1.4.7"
1212

1313
repositories {
1414
mavenCentral()
@@ -49,4 +49,4 @@ publishing {
4949
from(components["java"])
5050
}
5151
}
52-
}
52+
}

src/main/kotlin/me/tech/mcchestui/GUIType.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ sealed class GUIType(
4343
data object Dispenser : GUIType(
4444
slotsPerRow = 3,
4545
rows = 3,
46-
inventoryType = InventoryType.HOPPER
46+
inventoryType = InventoryType.DISPENSER
4747
)
4848

4949
data object Hopper : GUIType(
5050
slotsPerRow = 5,
5151
rows = 1,
5252
inventoryType = InventoryType.HOPPER
5353
)
54-
}
54+
}

0 commit comments

Comments
 (0)