diff --git a/Plan/common/src/main/java/com/djrapitops/plan/identification/Identifiers.java b/Plan/common/src/main/java/com/djrapitops/plan/identification/Identifiers.java index a61755a05..7a359d89e 100644 --- a/Plan/common/src/main/java/com/djrapitops/plan/identification/Identifiers.java +++ b/Plan/common/src/main/java/com/djrapitops/plan/identification/Identifiers.java @@ -97,7 +97,7 @@ public class Identifiers { private UUID getPlayerUUIDFromName(String playerName) { return dbSystem.getDatabase() .query(UserIdentifierQueries.fetchPlayerUUIDOf(playerName)) - .orElseThrow(() -> new BadRequestException("Given 'player' was not found in the database: '" + playerName + "'")); + .orElseThrow(() -> new BadRequestException("Given 'player' was not found in the database.")); } public UUID getPlayerUUID(String name) {