diff --git a/CHANGELOG.md b/CHANGELOG.md index 88f33d92..feab1036 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,16 @@ ### Changes: -- Cleaned up a bit of the internals. -- Optimized a few little bits of the plugin including some questionable ItemMeta calls. -- Removed reliance on nbt-api. +- Updated to 1.21.1 (ryderbelserion) +- Updated how glow is added to an item. (ryderbelserion) +- Remove unnecessary logging. (TDL) +- Stopped updating plugin hooks twice on `/ce reload` (ryderbelserion) + +### Additions: +- Added a new config option, `Settings.EnchantmentOptions.Limit.Change-On-Fail` (TDL) + - If true, the enchant limit will change. +- Added untested support for the Lands plugin. (TDL) ### Fixed: -- Fixed a few issues with broken bits of code that were commented. \ No newline at end of file +- Fixed an issue with enchantments not working with multi arrow. (TDL) +- Fixed an issue with checking if an enchant is activated. (TDL) +- Fixed an issue with blacksmith max enchants (TDL) +- Fixed an issue with ore drops. (TDL) \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 18c4d7b5..23995906 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { val buildNumber: String? = System.getenv("BUILD_NUMBER") -rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "2.5" +rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "2.5.1" val isSnapshot = false