diff --git a/Core/src/main/java/com/plotsquared/core/command/Grant.java b/Core/src/main/java/com/plotsquared/core/command/Grant.java index f1a970b89..ca5a832d7 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Grant.java +++ b/Core/src/main/java/com/plotsquared/core/command/Grant.java @@ -90,7 +90,7 @@ public class Grant extends Command { PlayerMetaDataKeys.PERSISTENT_GRANTED_PLOTS)) { if (args[0].equalsIgnoreCase("check")) { player.sendMessage(TranslatableCaption.of("grants.granted_plots"), - Template.of("grants", String.valueOf(access.get().orElse(0)))); + Template.of("amount", String.valueOf(access.get().orElse(0)))); } else { access.set(access.get().orElse(0) + 1); } diff --git a/Core/src/main/java/com/plotsquared/core/command/Rate.java b/Core/src/main/java/com/plotsquared/core/command/Rate.java index 3172a0078..b649842a8 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Rate.java +++ b/Core/src/main/java/com/plotsquared/core/command/Rate.java @@ -241,7 +241,7 @@ public class Rate extends SubCommand { plot.addRating(uuid, event.getRating()); player.sendMessage( TranslatableCaption.of("ratings.rating_applied"), - Template.of("value", plot.getId().toString()) + Template.of("plot", plot.getId().toString()) ); } };