mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Add disable method to the extensions api
This commit is contained in:
parent
f7d2b4ece3
commit
3fec30949a
1 changed files with 8 additions and 0 deletions
|
@ -136,4 +136,12 @@ public interface Extension extends EventRegistrar {
|
||||||
default GeyserApi geyserApi() {
|
default GeyserApi geyserApi() {
|
||||||
return GeyserApi.api();
|
return GeyserApi.api();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disable the extension.
|
||||||
|
*/
|
||||||
|
default void disable() {
|
||||||
|
this.setEnabled(false);
|
||||||
|
this.eventBus().unregisterAll();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue