mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-16 12:43:52 -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.description = description;
|
||||||
this.dataFolder = dataFolder;
|
this.dataFolder = dataFolder;
|
||||||
this.file = file;
|
this.file = file;
|
||||||
this.jar = new JarFile(file, true);
|
this.jar = new JarFile(file);
|
||||||
this.manifest = jar.getManifest();
|
this.manifest = jar.getManifest();
|
||||||
this.url = file.toURI().toURL();
|
this.url = file.toURI().toURL();
|
||||||
|
|
||||||
@@ -104,7 +104,11 @@ final class PluginClassLoader extends URLClassLoader {
|
|||||||
if (dot != -1) {
|
if (dot != -1) {
|
||||||
String pkgName = name.substring(0, dot);
|
String pkgName = name.substring(0, dot);
|
||||||
if (getPackage(pkgName) == null) {
|
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