From c5cb6f40b8a16028dffc6de71e62c7a46a3b605f Mon Sep 17 00:00:00 2001 From: tastybento Date: Sun, 16 Aug 2026 17:18:39 -0700 Subject: [PATCH 1/2] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7731e17..ed33b8e 100644 --- a/pom.xml +++ b/pom.xml @@ -67,7 +67,7 @@ -LOCAL - 1.2.0 + 1.2.1 BentoBoxWorld_ChunkBlock bentobox-world From 577baabe1e4160670d5cbbf4a4d54e8e8897d76d Mon Sep 17 00:00:00 2001 From: tastybento Date: Sun, 16 Aug 2026 17:36:48 -0700 Subject: [PATCH 2/2] fix: quote description in plugin.yml to fix Pladdon loading The project description contains a colon ("gamemode: a") which SnakeYAML interprets as a YAML mapping separator when unquoted, causing InvalidDescriptionException. This prevented the addon from registering as a Bukkit plugin (Pladdon) and caused Hangar to reject the JAR as missing metadata. Co-Authored-By: Claude Opus 4.6 (1M context) Claude-Session: https://claude.ai/code/session_01B94CWZDoiM9VevWtXb4RxF --- src/main/resources/plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index 6f88fab..73d1ad0 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -6,4 +6,4 @@ api-version: "1.21" authors: [tastybento] contributors: ["The BentoBoxWorld Community"] website: https://bentobox.world -description: ${project.description} +description: "${project.description}"