3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2025-01-11 18:10:52 +01:00

chore: make texture errors actually meaningful

Dieser Commit ist enthalten in:
Pierre Maurice Schwang 2024-12-23 21:57:41 +01:00
Ursprung 54451defb9
Commit c2e31240c3
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 37E613079F3E5BB9

Datei anzeigen

@ -954,7 +954,8 @@ public class TextureUtil implements TextureHolder {
}
}
if (entry == null) {
LOGGER.error("Cannot find {} in {}", modelsDir, file);
final String[] dirs = Arrays.stream(modelsDir).map(s -> String.format(s, nameSpace, name)).toArray(String[]::new);
LOGGER.error("Cannot find {} in {}", dirs, file);
continue;
}