From 217b4110954d61f380a414eee2374cf5b8721828 Mon Sep 17 00:00:00 2001 From: HaHaWTH Date: Thu, 19 Oct 2023 23:40:50 +0800 Subject: [PATCH] GUICaptcha is now beta --- src/main/java/fr/xephi/authme/AuthMe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/fr/xephi/authme/AuthMe.java b/src/main/java/fr/xephi/authme/AuthMe.java index e3597b31..5899f49e 100644 --- a/src/main/java/fr/xephi/authme/AuthMe.java +++ b/src/main/java/fr/xephi/authme/AuthMe.java @@ -214,7 +214,7 @@ public class AuthMe extends JavaPlugin { } if (settings.getProperty(SecuritySettings.GUI_CAPTCHA) && getServer().getPluginManager().isPluginEnabled("ProtocolLib")) { getServer().getPluginManager().registerEvents(new GuiCaptchaHandler((Plugin) this), this); - logger.info("(Alpha4)GUICaptcha Feature is enabled successfully!"); + logger.info("(Beta)GUICaptcha Feature is enabled successfully!"); logger.info("These features are still in development, if you encountered any problem, please report."); } else if (settings.getProperty(SecuritySettings.GUI_CAPTCHA) && !getServer().getPluginManager().isPluginEnabled("ProtocolLib")) { logger.warning("ProtocolLib is not loaded, we can't enable GUI Captcha.");