13
0
geforkt von Mirrors/Paper

Include class path in legacy conversion errors.

Dieser Commit ist enthalten in:
md_5 2018-07-30 09:19:07 +10:00
Ursprung 3b8f5be77b
Commit b94fd7c7e4

Datei anzeigen

@ -210,11 +210,11 @@ public final class CraftMagicNumbers implements UnsafeValues {
}
@Override
public byte[] processClass(PluginDescriptionFile pdf, byte[] clazz) {
public byte[] processClass(PluginDescriptionFile pdf, String path, byte[] clazz) {
try {
clazz = Commodore.convert(clazz, !isLegacy(pdf));
} catch (Exception ex) {
Bukkit.getLogger().log(Level.SEVERE, "Fatal error trying to convert " + pdf.getFullName(), ex);
Bukkit.getLogger().log(Level.SEVERE, "Fatal error trying to convert " + pdf.getFullName() + ":" + path, ex);
}
return clazz;