mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-11-04 08:59:47 +01:00
Add pi rate checking for main plugin
This commit is contained in:
parent
3b3de8d0ee
commit
53768a29d3
@ -56,8 +56,9 @@ public class LibsDisguises extends JavaPlugin {
|
||||
LibsPremium.check(getDescription().getVersion(), getFile());
|
||||
|
||||
if (!LibsPremium.isPremium()) {
|
||||
getLogger().info("You are running the free version, commands limited to non-players and operators. (Console, Command " +
|
||||
"Blocks, Admins)");
|
||||
getLogger()
|
||||
.info("You are running the free version, commands limited to non-players and operators. (Console," +
|
||||
" Command " + "Blocks, Admins)");
|
||||
}
|
||||
|
||||
if (!ReflectionManager.getMinecraftVersion().startsWith("1.15")) {
|
||||
@ -240,8 +241,10 @@ public class LibsDisguises extends JavaPlugin {
|
||||
}
|
||||
|
||||
// Invalidate invalid distribution
|
||||
if (LibsPremium.isPremium() && LibsPremium.getPaidInformation() != null &&
|
||||
!LibsPremium.getPaidInformation().isLegit()) {
|
||||
if (LibsPremium.isPremium() &&
|
||||
((LibsPremium.getPaidInformation() != null && !LibsPremium.getPaidInformation().isLegit()) ||
|
||||
(LibsPremium.getPluginInformation() != null &&
|
||||
LibsPremium.getPluginInformation().isLegit()))) {
|
||||
throw new IllegalStateException(
|
||||
"Error while checking pi rate on startup! Please re-download the jar from SpigotMC before " +
|
||||
"reporting this error!");
|
||||
|
Loading…
Reference in New Issue
Block a user