From 94dbd372dc669b089aa1ba9646e9b7a54817d299 Mon Sep 17 00:00:00 2001 From: "Lukas Rieger (Blue)" Date: Mon, 1 May 2023 20:43:16 +0200 Subject: [PATCH] Fix typo --- .../bluecolored/bluemap/common/plugin/commands/Commands.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/commands/Commands.java b/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/commands/Commands.java index 291fd4dd..f9e739cd 100644 --- a/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/commands/Commands.java +++ b/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/commands/Commands.java @@ -890,7 +890,7 @@ public class Commands { mapIds = storage.collectMapIds(); } catch (IOException ex) { source.sendMessage(Text.of(TextColor.RED, "There was an unexpected exception trying to access this storage. Please check the console for more details...")); - Logger.global.logError("Unexpected exception trying to load mapId's from storage '" + storageId + "'!", ex); + Logger.global.logError("Unexpected exception trying to load mapIds from storage '" + storageId + "'!", ex); return 0; } @@ -932,7 +932,7 @@ public class Commands { Text purgeCommand = Text.of(TextColor.WHITE, "/bluemap purge " + mapId) .setClickAction(Text.ClickAction.SUGGEST_COMMAND, "/bluemap purge " + mapId); source.sendMessage(Text.of(TextColor.RED, "Can't delete a loaded map!\n" + - "Unload the map by removing it's config-file first,\n" + + "Unload the map by removing its config-file first,\n" + "or use ", purgeCommand, " if you want to purge it.")); return 0; }