aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/net/elytrium/limboauth/command/PremiumCommand.java
diff options
context:
space:
mode:
authorPetr Ilin <hevav@hevav.dev>2023-01-23 22:55:42 +0300
committerPetr Ilin <hevav@hevav.dev>2023-01-23 22:55:42 +0300
commit5709af5c0ade33aff357650fd4e57f79c4844649 (patch)
treeebb3444d471fa3a5922cabec9735fd693dab2611 /src/main/java/net/elytrium/limboauth/command/PremiumCommand.java
parent5493d0efb8cc31fe630a5b02e84dcd0378810b40 (diff)
downloadLimboAuth-5709af5c0ade33aff357650fd4e57f79c4844649.tar.gz
LimboAuth-5709af5c0ade33aff357650fd4e57f79c4844649.tar.bz2
LimboAuth-5709af5c0ade33aff357650fd4e57f79c4844649.zip
Ability to deny/allow commands without permission plugins
Diffstat (limited to 'src/main/java/net/elytrium/limboauth/command/PremiumCommand.java')
-rw-r--r--src/main/java/net/elytrium/limboauth/command/PremiumCommand.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/net/elytrium/limboauth/command/PremiumCommand.java b/src/main/java/net/elytrium/limboauth/command/PremiumCommand.java
index fb42e92..7cc04cb 100644
--- a/src/main/java/net/elytrium/limboauth/command/PremiumCommand.java
+++ b/src/main/java/net/elytrium/limboauth/command/PremiumCommand.java
@@ -20,7 +20,6 @@ package net.elytrium.limboauth.command;
import com.j256.ormlite.dao.Dao;
import com.velocitypowered.api.command.CommandSource;
import com.velocitypowered.api.command.SimpleCommand;
-import com.velocitypowered.api.permission.Tristate;
import com.velocitypowered.api.proxy.Player;
import java.sql.SQLException;
import java.util.Locale;
@@ -107,6 +106,7 @@ public class PremiumCommand implements SimpleCommand {
@Override
public boolean hasPermission(SimpleCommand.Invocation invocation) {
- return invocation.source().getPermissionValue("limboauth.commands.premium") == Tristate.TRUE;
+ return Settings.IMP.MAIN.COMMAND_PERMISSION_STATE.PREMIUM
+ .hasPermission(invocation.source(), "limboauth.commands.premium");
}
}