Skip to content

Commit

Permalink
fix: nextAvailableSlot setting in the wrong slot.
Browse files Browse the repository at this point in the history
  • Loading branch information
DebitCardz committed Aug 7, 2023
1 parent 353ec31 commit 03c2647
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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.0.2"
version = "1.0.3"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/me/tech/mcchestui/GUI.kt
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class GUI(
return
}

slot(firstEmptySlot + 1, builder)
slot(firstEmptySlot, builder)
}

@EventHandler(priority = EventPriority.HIGHEST)
Expand Down

0 comments on commit 03c2647

Please sign in to comment.