We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48a5529 commit 3282fdeCopy full SHA for 3282fde
common/src/main/java/de/bluecolored/bluemap/common/plugin/skins/PlayerSkinUpdater.java
@@ -76,11 +76,6 @@ public CompletableFuture<Void> updateSkin(final UUID playerUuid) {
76
throw new CompletionException("The skin provider threw an exception while loading the skin for UUID: '" + playerUuid + "'!", e);
77
}
78
}, BlueMap.THREAD_POOL).thenAcceptAsync(skin -> {
79
- if (skin == null) {
80
- Logger.global.logDebug("No player-skin provided for UUID: " + playerUuid);
81
- return;
82
- }
83
-
84
Map<String, BmMap> maps = plugin.getBlueMap().getMaps();
85
if (maps == null) {
86
Logger.global.logDebug("Could not update skin, since the plugin seems not to be ready.");
0 commit comments