Enhance continue message

This commit is contained in:
NotMyFault 2021-02-03 15:44:18 +01:00
parent 18c1a0e4f6
commit 82e90553bc

View File

@ -76,8 +76,8 @@ public class Continue extends SubCommand {
if (Settings.Done.COUNTS_TOWARDS_LIMIT && (player.getAllowedPlots()
< player.getPlotCount() + size)) {
player.sendMessage(
TranslatableCaption.of("permission.no_permission"),
Template.of("node", Permission.PERMISSION_ADMIN_COMMAND_CONTINUE.toString())
TranslatableCaption.of("permission.cant_claim_more_plots"),
Template.of("amount", String.valueOf(player.getAllowedPlots()))
);
return false;
}