mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-13 19:25:49 -07:00
SPIGOT-3721: Plugins without manifests no longer load
By: md_5 <git@md-5.net>
This commit is contained in:
@@ -44,7 +44,7 @@ final class PluginClassLoader extends URLClassLoader {
|
||||
this.description = description;
|
||||
this.dataFolder = dataFolder;
|
||||
this.file = file;
|
||||
this.jar = new JarFile(file, true);
|
||||
this.jar = new JarFile(file);
|
||||
this.manifest = jar.getManifest();
|
||||
this.url = file.toURI().toURL();
|
||||
|
||||
@@ -104,7 +104,11 @@ final class PluginClassLoader extends URLClassLoader {
|
||||
if (dot != -1) {
|
||||
String pkgName = name.substring(0, dot);
|
||||
if (getPackage(pkgName) == null) {
|
||||
definePackage(pkgName, manifest, url);
|
||||
if (manifest != null) {
|
||||
definePackage(pkgName, manifest, url);
|
||||
} else {
|
||||
definePackage(pkgName, null, null, null, null, null, null, null);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user