diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ee83ada8..37be91bca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ### Fixed: -- Apply max stack size to the getKey methods which when you do /crazycrates givekey blahblah 99, it will now split the stack into 64/35 +- Apply `MaxStackSize` to the player's inventory when using Player#addItem, so now instead of 99 items popping up in the inventory if giving 99 keys or any items, it'll split 64/35 + - Spigot for some odd reason made Player#addItem use the max stack size for the inventories. #hardforkwhen ### Changes: -- Clean up the papi parsing in messages. \ No newline at end of file +- Simplified parsing messages internally with placeholders \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index da1aa90b4..9fea775d8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { val buildNumber: String? = System.getenv("BUILD_NUMBER") -rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "3.5" +rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "3.5.1" val isSnapshot = true