mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00:00
Change Service registration to register WorldsHolder instead of
AnjoPermissionsHandler. This is the correct entry point for all data.
This commit is contained in:
parent
97bd49e598
commit
c0517c1203
2 changed files with 3 additions and 2 deletions
|
@ -137,4 +137,5 @@ v 1.9:
|
||||||
- Fix a bug with getWorldData return the main world data for all mirrors, instead of the worlds parent data.
|
- Fix a bug with getWorldData return the main world data for all mirrors, instead of the worlds parent data.
|
||||||
- Prevent getAllPlayersPermissions() processing a group more than once. Improves performance when using complex inheritance structures.
|
- Prevent getAllPlayersPermissions() processing a group more than once. Improves performance when using complex inheritance structures.
|
||||||
- Fix world mirroring so it correctly creates data files and data sources for partially mirrored worlds.
|
- Fix world mirroring so it correctly creates data files and data sources for partially mirrored worlds.
|
||||||
- Fixed world mirroring so it returns the correct data for the requested world
|
- Fixed world mirroring so it returns the correct data for the requested world.
|
||||||
|
- Change Service registration to register WorldsHolder instead of AnjoPermissionsHandler. This is the correct entry point for all data.
|
|
@ -158,7 +158,7 @@ public class GroupManager extends JavaPlugin {
|
||||||
System.out.println(pdfFile.getName() + " version " + pdfFile.getVersion() + " is enabled!");
|
System.out.println(pdfFile.getName() + " version " + pdfFile.getVersion() + " is enabled!");
|
||||||
|
|
||||||
// Register as a service
|
// Register as a service
|
||||||
this.getServer().getServicesManager().register(AnjoPermissionsHandler.class, this.permissionHandler, this, ServicePriority.Lowest);
|
this.getServer().getServicesManager().register(WorldsHolder.class, this.worldsHolder, this, ServicePriority.Lowest);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isLoaded() {
|
public static boolean isLoaded() {
|
||||||
|
|
Loading…
Reference in a new issue