Weird bug with wand on a server, need to fix sort operator selection

This commit is contained in:
trouper
2025-03-18 22:21:18 -05:00
parent 6374afd543
commit b85b53f6df
15 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

0
gradlew vendored Executable file → Normal file
View File

View File

@@ -138,7 +138,7 @@ public class SentinelCommand implements CustomCommand {
/* =======================
Subcommand: CONFIG
======================= */
======================= */
private void handleConfig(CommandSender sender) {
Player p = getPlayer(sender);
if (p == null) return;

View File

@@ -33,7 +33,7 @@ public class PluginCloakingEvents implements CustomListener {
}
for (String alias : Sentinel.getInstance().getDirector().io.advConfig.commandsWithPluginAccess) {
if (!message.startsWith(alias)) continue;
if (!message.equals(alias)) continue;
e.setCancelled(true);
p.sendMessage(Text.color(Sentinel.getInstance().getDirector().io.lang.permissions.noPlugins));
}