Better error message after player's UUID was not found.

This commit is contained in:
Rsl1122 2018-02-11 15:47:52 +02:00
parent 663a4d7642
commit 3d6c080ac2

View File

@ -43,7 +43,7 @@ public class PlayerPageHandler extends PageHandler {
UUID uuid = UUIDUtility.getUUIDOf(playerName);
if (uuid == null) {
return notFound("Player has no UUID");
return notFound("Player UUID was not found in the database.");
}
try {