Uplift Paper version to 1.21.10

Use the ListedPlayer method to set messages under online players for the server list

Upgrade Gradle to 9.2.0

Update the getBuildNumber function in build.gradle.kts to use non-deprecated method to fetch build numbers
This commit is contained in:
Focusvity
2025-11-05 18:34:12 +11:00
parent be6fa5a41a
commit a8c70933e7
5 changed files with 24 additions and 28 deletions
@@ -119,11 +119,7 @@ public class PlexUtils implements PlexBase
public static boolean hasVanishPlugin()
{
if (Bukkit.getPluginManager().isPluginEnabled("SuperVanish") || Bukkit.getPluginManager().isPluginEnabled("PremiumVanish"))
{
return true;
}
return false;
return Bukkit.getPluginManager().isPluginEnabled("SuperVanish") || Bukkit.getPluginManager().isPluginEnabled("PremiumVanish");
}
public static boolean isPluginCMD(String cmd, String pluginName)