Temporary fix for displaying login messages on join

This commit is contained in:
2024-04-28 12:52:21 -05:00
parent 357683a0f6
commit 068dd28fd4
2 changed files with 66 additions and 1 deletions

View File

@ -109,7 +109,6 @@ public class Plex extends JavaPlugin
commands.load(false);
sqlConnection = new SQLConnection();
// mongoConnection = new MongoConnection();
redisConnection = new RedisConnection();
playerCache = new PlayerCache();
@ -153,6 +152,13 @@ public class Plex extends JavaPlugin
PlexLog.debug("Not hooking into Prism");
}
if (PlexUtils.hasVanishPlugin())
{
PlexLog.log("Hooked into SuperVanish / PremiumVanish!");
} else {
PlexLog.debug("Not hooking into SuperVanish / PremiumVanish");
}
updateChecker = new UpdateChecker();
PlexLog.log("Update checking enabled");