Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-12-26 16:12:46 +01:00
Don't block chunk loading if an invalid skull is found (#4129)
* Add null check in case skull texture value is null * Use variable for future result
Dieser Commit ist enthalten in:
Ursprung
69f89edb91
Commit
a443265e1d
@ -107,7 +107,12 @@ public class SkullBlockEntityTranslator extends BlockEntityTranslator implements
|
||||
CompletableFuture<String> texturesFuture = getTextures(owner, uuid);
|
||||
if (texturesFuture.isDone()) {
|
||||
try {
|
||||
SkullCache.Skull skull = session.getSkullCache().putSkull(blockPosition, uuid, texturesFuture.get(), blockState);
|
||||
String texture = texturesFuture.get();
|
||||
if (texture == null) {
|
||||
session.getGeyser().getLogger().debug("Custom skull with invalid SkullOwner tag: " + blockPosition + " " + tag);
|
||||
return null;
|
||||
}
|
||||
SkullCache.Skull skull = session.getSkullCache().putSkull(blockPosition, uuid, texture, blockState);
|
||||
return skull.getBlockDefinition();
|
||||
} catch (InterruptedException | ExecutionException e) {
|
||||
session.getGeyser().getLogger().debug("Failed to acquire textures for custom skull: " + blockPosition + " " + tag);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren