Skip to content

Commit

Permalink
release v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
l4zs committed Dec 23, 2021
1 parent 23582ff commit 39ef454
Show file tree
Hide file tree
Showing 3 changed files with 3 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 @@ -11,7 +11,7 @@ ktlint {
}

group = "de.stckoverflw"
version = "1.3.1"
version = "1.3.2"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ object InventorySwap : Challenge() {
players.forEach { player ->
if (!player.inventory.contents.contentEquals(inventories[player])) {
player.inventory.clear()
@Suppress("UNCHECKED_CAST")
player.inventory.setContents(inventories[player]!! as Array<out ItemStack>)
player.saveInventory()
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors:
- StckOverflw
- l4zs
main: de.stckoverflw.stckutils.StckUtilsPlugin
version: 1.3.1
version: 1.3.2
libraries:
- "net.axay:kspigot:1.18.0"
- "org.jetbrains.kotlin:kotlin-stdlib:1.6.0"
Expand Down

0 comments on commit 39ef454

Please sign in to comment.