Skip to content

Commit 94dbd37

Browse files
committed
Fix typo
1 parent 004f296 commit 94dbd37

File tree

1 file changed

+2
-2
lines changed
  • BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/commands

1 file changed

+2
-2
lines changed

BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/commands/Commands.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ public int storagesInfoCommand(CommandContext<S> context) {
890890
mapIds = storage.collectMapIds();
891891
} catch (IOException ex) {
892892
source.sendMessage(Text.of(TextColor.RED, "There was an unexpected exception trying to access this storage. Please check the console for more details..."));
893-
Logger.global.logError("Unexpected exception trying to load mapId's from storage '" + storageId + "'!", ex);
893+
Logger.global.logError("Unexpected exception trying to load mapIds from storage '" + storageId + "'!", ex);
894894
return 0;
895895
}
896896

@@ -932,7 +932,7 @@ public int storagesDeleteMapCommand(CommandContext<S> context) {
932932
Text purgeCommand = Text.of(TextColor.WHITE, "/bluemap purge " + mapId)
933933
.setClickAction(Text.ClickAction.SUGGEST_COMMAND, "/bluemap purge " + mapId);
934934
source.sendMessage(Text.of(TextColor.RED, "Can't delete a loaded map!\n" +
935-
"Unload the map by removing it's config-file first,\n" +
935+
"Unload the map by removing its config-file first,\n" +
936936
"or use ", purgeCommand, " if you want to purge it."));
937937
return 0;
938938
}

0 commit comments

Comments
 (0)