mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-31 21:37:39 +01:00
Added PluginManager.getPlugins()
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
91007ea0be
commit
1627c78fa1
@ -30,6 +30,13 @@ public interface PluginManager {
|
|||||||
*/
|
*/
|
||||||
public Plugin getPlugin(String name);
|
public Plugin getPlugin(String name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets a list of all currently loaded plugins
|
||||||
|
*
|
||||||
|
* @return Array of Plugins
|
||||||
|
*/
|
||||||
|
public Plugin[] getPlugins();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if the given plugin is enabled or not
|
* Checks if the given plugin is enabled or not
|
||||||
*
|
*
|
||||||
|
@ -136,6 +136,10 @@ public final class SimplePluginManager implements PluginManager {
|
|||||||
return lookupNames.get(name);
|
return lookupNames.get(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Plugin[] getPlugins() {
|
||||||
|
return plugins.toArray(new Plugin[0]);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if the given plugin is enabled or not
|
* Checks if the given plugin is enabled or not
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user