re remove debug logging

lmao
This commit is contained in:
ayunami2000 2022-04-10 14:23:34 -04:00
parent 8866f44aa2
commit f78edc55d4
1 changed files with 1 additions and 2 deletions

View File

@ -7,7 +7,6 @@ import dev.plex.command.blocker.MatchCommand;
import dev.plex.command.blocker.RegexCommand;
import dev.plex.listener.PlexListener;
import dev.plex.player.PlexPlayer;
import dev.plex.util.PlexLog;
import dev.plex.util.PlexUtils;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
@ -64,7 +63,7 @@ public class CommandListener extends PlexListener
if (isBlocked)
{
event.setCancelled(true);
PlexLog.debug("Command blocked: " + blockedCommand);
//PlexLog.debug("Command blocked: " + blockedCommand);
player.sendMessage(PlexUtils.mmDeserialize(blockedCommand.getMessage()));
return;
}