Skip to content

Commit

Permalink
Fix: formatting for command cooldown
Browse files Browse the repository at this point in the history
  • Loading branch information
BlaneyXYZ committed Dec 21, 2024
1 parent 99a677e commit dd23769
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void commandCooldown(PlayerCommandPreprocessEvent e) {
setCooldown(command, p);
return;
}
p.sendMessage(MessageColor.NEGATIVE + "You can't use that command for" + MessageColor.NEUTRAL + RUtils.formatDateDiff(currentcd) + MessageColor.NEGATIVE + ".");
p.sendMessage(MessageColor.NEGATIVE + "You can't use that command for " + MessageColor.NEUTRAL + RUtils.formatDateDiff(currentcd) + MessageColor.NEGATIVE + ".");
e.setCancelled(true);
return;
}
Expand Down

0 comments on commit dd23769

Please sign in to comment.