diff --git a/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java b/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java index bb874aa6c..f4a601269 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java @@ -103,7 +103,7 @@ public class DatabaseCommand extends SubCommand { if (args.length < 1) { player.sendMessage( TranslatableCaption.of("commandconfig.command_syntax"), - Template.of("value", "/plot database [area] ") + Template.of("value", "/plot database [area] ") ); return false; } diff --git a/Core/src/main/java/com/plotsquared/core/command/RequiredType.java b/Core/src/main/java/com/plotsquared/core/command/RequiredType.java index 06434de91..e09866aca 100644 --- a/Core/src/main/java/com/plotsquared/core/command/RequiredType.java +++ b/Core/src/main/java/com/plotsquared/core/command/RequiredType.java @@ -32,8 +32,8 @@ import com.plotsquared.core.configuration.caption.TranslatableCaption; import javax.annotation.Nonnull; public enum RequiredType { - CONSOLE(TranslatableCaption.of("console.is_console")), - PLAYER(TranslatableCaption.of("console.not_console")), + CONSOLE(TranslatableCaption.of("console.not_console")), + PLAYER(TranslatableCaption.of("console.is_console")), NONE(StaticCaption.of("Something went wrong: RequiredType=NONE")); // this caption should never be sent private final Caption caption;