From e927c792d65496e3eb19f45a6428d9f434e26a82 Mon Sep 17 00:00:00 2001 From: Luis Date: Thu, 29 Aug 2024 16:44:22 +0100 Subject: [PATCH] chore: warn user about the artifact change --- .../me/lucko/luckperms/minestom/LPMinestomBootstrap.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/minestom/src/main/java/me/lucko/luckperms/minestom/LPMinestomBootstrap.java b/minestom/src/main/java/me/lucko/luckperms/minestom/LPMinestomBootstrap.java index 8106b5999..5b0641a52 100644 --- a/minestom/src/main/java/me/lucko/luckperms/minestom/LPMinestomBootstrap.java +++ b/minestom/src/main/java/me/lucko/luckperms/minestom/LPMinestomBootstrap.java @@ -51,6 +51,11 @@ public LPMinestomBootstrap( this.schedulerAdapter = new MinestomSchedulerAdapter(this); this.classPathAppender = new NoopClassPathAppender(); this.plugin = new LPMinestomPlugin(this, contextProviders, configurationAdapter, dependencyManager, permissionSuggestions, commandRegistry); + + // we're about to move to a new artifact, we should warn the user + this.logger.warn("This is the final version of LuckPerms for Minestom on this artifact."); + this.logger.warn("Please consider moving to the new 'dev.lu15:luckperms-minestom' artifact published on both Hypera and Central repositories."); + this.logger.warn("This artifact will no longer be updated."); } public void onEnable() {