Skip to content

Commit

Permalink
Quiet down about skin lookup errors for skull items, fixes #1254
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Dec 9, 2015
1 parent 68748b8 commit e30d0f6
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -194,7 +194,9 @@ public static GameProfile fillGameProfile(GameProfile gameProfile) {
return gameProfile1;
}
} catch (Exception e) {
dB.echoError(e);
if (dB.verbose) {
dB.echoError(e);
}
}
return null;
}
Expand Down

0 comments on commit e30d0f6

Please sign in to comment.