Skip to content

Commit

Permalink
fix: inventory type (#25)
Browse files Browse the repository at this point in the history
* fix: inventory type

* Update build.gradle.kts

* Update README.md
  • Loading branch information
DebitCardz authored Feb 4, 2024
1 parent a0dcc03 commit c04f3bb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repositories {
}

dependencies {
implementation("com.github.DebitCardz:mc-chestui-plus:1.4.6")
implementation("com.github.DebitCardz:mc-chestui-plus:1.4.7")
}
```
### Maven
Expand All @@ -34,7 +34,7 @@ dependencies {
<dependency>
<groupId>com.github.DebitCardz</groupId>
<artifactId>mc-chestui-plus</artifactId>
<version>1.4.6</version>
<version>1.4.7</version>
</dependency>

```
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ val githubActor = project.findProperty("gpr.user") as String? ?: System.getenv("
val githubToken = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")

group = "me.tech"
version = "1.4.6"
version = "1.4.7"

repositories {
mavenCentral()
Expand Down Expand Up @@ -49,4 +49,4 @@ publishing {
from(components["java"])
}
}
}
}
4 changes: 2 additions & 2 deletions src/main/kotlin/me/tech/mcchestui/GUIType.kt
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ sealed class GUIType(
data object Dispenser : GUIType(
slotsPerRow = 3,
rows = 3,
inventoryType = InventoryType.HOPPER
inventoryType = InventoryType.DISPENSER
)

data object Hopper : GUIType(
slotsPerRow = 5,
rows = 1,
inventoryType = InventoryType.HOPPER
)
}
}

0 comments on commit c04f3bb

Please sign in to comment.