mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-02 11:22:01 +01:00
SPIGOT-6822: Ensure library loader has same parent as plugin loader
This behaviour may need to be revisted in future to achieve greater isolation of plugins/libraries By: md_5 <git@md-5.net>
This commit is contained in:
parent
c5a7423ca0
commit
62f79aa905
@ -121,7 +121,7 @@ class LibraryLoader
|
||||
} );
|
||||
}
|
||||
|
||||
URLClassLoader loader = new URLClassLoader( jarFiles.toArray( new URL[ jarFiles.size() ] ) );
|
||||
URLClassLoader loader = new URLClassLoader( jarFiles.toArray( new URL[ jarFiles.size() ] ), getClass().getClassLoader() );
|
||||
|
||||
return loader;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user