Increase chat delay from 5ms to 50ms

This commit is contained in:
arclicious 2020-12-12 16:09:38 +00:00
parent 2b0ccbef89
commit 95c317667e

View file

@ -28,7 +28,7 @@ public final class PlayerChat implements Listener {
if (PlayerCommand.getCommandMillisList().get(playerUuid) != null) {
final long millisDifference = System.currentTimeMillis() - PlayerCommand.getCommandMillisList().get(playerUuid);
if (millisDifference < 5) {
if (millisDifference < 50) {
event.setCancelled(true);
}
}