diff --git a/docs/customization/messages.md b/docs/customization/messages.md index efbb851..5f85862 100644 --- a/docs/customization/messages.md +++ b/docs/customization/messages.md @@ -26,14 +26,13 @@ The default `messages.yml` file is below. # 3. Expiry # 4. Punisher banMessage: "You have been banned! You may appeal at .\nReason: \nEnd date: \nBanned by: " -indefBanMessage: "Your is currently banned! You may appeal at ." -test: "this is a test message!" -# 1. The command sender's username -variableTest: "variable test with !" -playerNotFound: "Player not found!" -worldNotFound: "World not found!" +# The type of indefinite ban +# Appeal URL +indefBanMessage: "Your is indefinitely banned! You may appeal at ." +playerNotFound: "Player not found!" +worldNotFound: "World not found!" # 1. The world you have been teleported to -playerWorldTeleport: "You have been teleported to ." +playerWorldTeleport: "You have been teleported to ." # 1. The sender who opped everyone oppedAllPlayers: " - Opped all players on the server" # 1. The sender who de-opped everyone @@ -61,8 +60,7 @@ unmutedPlayer: " - Unmuted " lockedUpPlayer: " - Locking up " # 1. The person who is unlocking # 2. The person who has been unlocked -unlockedUpPlayer: " - Unlocking " -noPermission: "You cannot use this command!" +unlockedPlayer: " - Unlocking " # 1. The rank required to use the command noPermissionRank: "You must be at least to use this command!" # 1. The permission node required to use the command @@ -70,25 +68,23 @@ noPermissionNode: "You must have the permission: to use this command!" noPermissionInGame: "You must be in console to use this command!" noPermissionConsole: "You must be in-game to use this command!" # 1. The username of the name history -nameHistoryTitle: "Name History of " -# 1. A username of the found user -# 2. When the user changed to that username -nameHistoryBody: " - ()" -# 1. The username that failed -nameHistoryFail: "Something went wrong while trying to retrieve name history of ! Try again later!" -nameHistoryDoesntExist: "Couldn't find this user! Please check if your spelling was correct and this player exists" +nameHistoryTitle: "Name History of " +nameHistorySeparator: "-----------------------------" +# 1. The name +# 2. The date and time of the name change +nameHistoryBody: " - " # 1. The gamemode -gameModeSetTo: "Your gamemode has been set to ." +gameModeSetTo: "Your gamemode has been set to ." # 1. The player's name # 2. The gamemode -setOtherPlayerGameModeTo: "You set 's gamemode to ." +setOtherPlayerGameModeTo: "You set 's gamemode to ." # 1. The command sender # 2. The gamemode -playerSetOtherGameMode: " set your gamemode to ." +playerSetOtherGameMode: " set your gamemode to ." # 1. The command sender # 2. The gamemode setEveryoneGameMode: " - Changing everyone's gamemode to " -consoleMustDefinePlayer: "You must define a player since you are running this command from console." +consoleMustDefinePlayer: "You must define a player since you are running this command from console." # 1. The command sender # 2. The player newAdminAdded: " - Adding to the admin list" @@ -127,9 +123,9 @@ playerLockedUp: "That player is already locked up!" muted: "You are currently muted - STFU!" kickedPlayer: " - Kicking " teleportedToWorldSpawn: "Teleporting to the local spawn" -toggleCommandSpy: "CommandSpy has been" -enabled: "enabled." -disabled: "disabled." +toggleCommandSpy: "CommandSpy has been" +enabled: "enabled." +disabled: "disabled." adminChatFormat: '[AdminChat] » ' maximumPrefixLength: "The maximum length for a tag may only be ." prefixCleared: "Your prefix has been cleared." diff --git a/docs/indefinitebans.md b/docs/indefinitebans.md index dfd7ff3..afc64b9 100644 --- a/docs/indefinitebans.md +++ b/docs/indefinitebans.md @@ -4,33 +4,35 @@ title: Indefinite Bans --- # Introduction -Similar to TotalFreedomMod, Plex has indefinite bans. Indefinite bans are reserved for players who should not automatically be unbanned. Anyone who has access to the `indefbans.yml` file can add indefinite bans. +Similar to TotalFreedomMod, Plex has indefinite bans. Indefinite bans are reserved for players who should not automatically be unbanned. Anyone who has access to the `indefbans.yml` file can add indefinite bans. If you are using Redis, all indefinite bans will be uploaded to Redis on startup. From that point on, indefinite bans will be fetched from Redis instead of the `indefbans.yml` file. **Redis is NOT required to use indefinite bans.** If you do not use Redis, Plex will fetch indefinite bans from the `indefbans.yml` file. No matter which medium you use, you will always add new entries to the `indefbans.yml` file. Note that there is no in-game command for adding or removing indefinite bans. ## Default file ```yaml title=/plugins/Plex/indefbans.yml # Plex Indefinite Bans File # Players with their UUID / IP / Usernames in here will be indefinitely banned until removed -# List of permanently banned UUIDs # If you want to get someone's UUID, use https://api.ashcon.app/mojang/v2/user/ -uuids: - - 1dac0e92-f565-4479-afd5-38c7df5f9732 # badplayer123 +griefers: + users: + - "badplayer123" + - "badplayer321" + uuids: + - 1dac0e92-f565-4479-afd5-38c7df5f9732 # badplayer123 + ips: + - 123.123.123.123 -# List of permanently banned IP addresses -ips: - - 169.254.69.69 - -# List of permanently banned UUIDs -# If you want to get someone's username, use https://api.ashcon.app/mojang/v2/user/, or just remember it -usernames: - - badplayer123 +# Note that these keys can be anything, they are simply to help you keep things organized. +# They are not used within the plugin. Duplicate keys are not allowed, and will not work. +bypassers: + users: + - "bypasser1" + ips: + - 321.321.321.321 + - 169.254.1.2 ``` -### UUIDs -Plex allows you to add UUIDs as indefinite bans. To get the UUID of a player, you can use the Ashcon API. Replace `` with the player's username: `https://api.ashcon.app/mojang/v2/user/`. You can then add the UUID to the indefinite ban list. +### How it works +Each entry starts with a description. This is to help you organize indefinite bans. For example, you could have a section `griefers` for serial griefers or `bypassers` for players who have bypassed bans. The `users` section is for usernames only, the `uuids` section is only for UUIDs, and the `ips` section is for IPs only. If you do not want to ban a type, you do not have to include it. Note that no duplicate descriptions can exist. This means you cannot have `bypassers` as a section twice. The actual descriptions are not used in the plugins and can be anything you like. They do not affect the indefinite ban in any way. -### IPs -You can add IP addresses as indefinite bans if you know it. Note that it must be a valid IPv4 Address. This means each group must be between 0 - 255 and there can only be three separators. - -### Usernames -If you wish to only ban a username and not a UUID, Plex allows you to do so. Note that if a player changes their name, they will be allowed to join again. To convert a UUID to a username, you can use the Ashcon API. Replace `` with the player's UUID: `https://api.ashcon.app/mojang/v2/user/`. You can then add the UUID to the indefinite ban list. If you already know the player's username, you may simply enter it. \ No newline at end of file +### Converting indefinite bans +If you are switching from TotalFreedomMod to Plex, we have developed a tool called IBConverter to convert your existing indefinite bans into Plex's format. For more information on IBConverter, visit [the GitHub page](https://github.com/PlexDevelopment/IBConverter). This tool was written in Python. The only thing you need to give it is your existing `indefinitebans.yml` file from TotalFreedomMod. Note that it requires Python 3.7 or newer and `pip` to be installed on your system. \ No newline at end of file diff --git a/docs/intro.md b/docs/intro.md index fd0ae0b..70013e2 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -5,6 +5,6 @@ title: Introduction # Welcome to Plex -This website serves as the official documentation for **Plex**. **Plex** is a Minecraft: Java Edition plugin. It is inspired by [TotalFreedomMod](https://github.com/TotalFreedom/TotalFreedomMod), and is aimed as an alternative for server owners. +Plex is a new freedom plugin. It is an alternative to [TotalFreedomMod](https://github.com/TotalFreedomMC/TotalFreedomMod). It has many of the features that make a freedom server unique, but also many features that TotalFreedomMod doesn’t have. For example, there is full support for using a permissions plugin instead of ranks. It is also much more performance oriented. You can use Redis to store punishments and store player data in MongoDB, MariaDB, or SQLite. Plex is also fully customizable as you can change almost all of the messages within the plugin. Plex is not a rewrite or "debloat" of TotalFreedomMod. In fact, it features almost no code from TotalFreedomMod. Plex is an entirely new experience. Use the sidebar on the left to navigate the documentation. diff --git a/docs/versions.md b/docs/versions.md new file mode 100644 index 0000000..43106db --- /dev/null +++ b/docs/versions.md @@ -0,0 +1,15 @@ +--- +id: versions +title: Versions +--- + +# Introduction +Plex builds against the latest Minecraft version available. A table has been provided below to help you determine which versions of Plex work with your version of Minecraft. + +| Plex Version | Minecraft Versions | +| ------------ | ------------------ | +| 0.4 | 1.16.5 - 1.18.1 | +| 0.5 | 1.18 - 1.18.1 | +| 0.6 | 1.18 - 1.18.1 | +| 0.7 | 1.18 - 1.18.1 | +| 0.8 | 1.18.2 | \ No newline at end of file diff --git a/sidebars.js b/sidebars.js index f26ea6f..1736d3c 100644 --- a/sidebars.js +++ b/sidebars.js @@ -24,6 +24,11 @@ const sidebars = { label: 'Introduction', id: 'intro', }, + { + type: 'doc', + label: 'Versions', + id: 'versions', + }, { type: 'doc', label: 'Compiling', diff --git a/static/javadocs/allclasses-index.html b/static/javadocs/allclasses-index.html index cf45511..b29934f 100644 --- a/static/javadocs/allclasses-index.html +++ b/static/javadocs/allclasses-index.html @@ -2,7 +2,7 @@ -All Classes and Interfaces (Plex 0.7 API) +All Classes and Interfaces (Plex 0.8 API) @@ -189,6 +189,10 @@ loadScripts(document, 'script');
 
 
+ +
 
+ +
 
 
@@ -237,6 +241,10 @@ loadScripts(document, 'script');
 
 
+ +
 
+ +
 
 
@@ -265,62 +273,64 @@ loadScripts(document, 'script');
 
 
- +
 
- +
 
- -
 
- + +
 
+
 
- -
 
- -
 
- -
 
- -
 
- +
 
- +
 
- +
 
- +
 
- +
 
- - diff --git a/static/javadocs/allpackages-index.html b/static/javadocs/allpackages-index.html index 5b53b2f..9554d31 100644 --- a/static/javadocs/allpackages-index.html +++ b/static/javadocs/allpackages-index.html @@ -2,7 +2,7 @@ -All Packages (Plex 0.7 API) +All Packages (Plex 0.8 API) @@ -81,6 +81,10 @@ loadScripts(document, 'script');
 
 
+ +
 
+ +
 
 
diff --git a/static/javadocs/constant-values.html b/static/javadocs/constant-values.html index ea1684c..80de262 100644 --- a/static/javadocs/constant-values.html +++ b/static/javadocs/constant-values.html @@ -2,7 +2,7 @@ -Constant Field Values (Plex 0.7 API) +Constant Field Values (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/Plex.html b/static/javadocs/dev/plex/Plex.html index 8b6da5a..27bf355 100644 --- a/static/javadocs/dev/plex/Plex.html +++ b/static/javadocs/dev/plex/Plex.html @@ -2,7 +2,7 @@ -Plex (Plex 0.7 API) +Plex (Plex 0.8 API) @@ -109,6 +109,12 @@ loadScripts(document, 'script');
 
+ + +
 
+ + +
 
 
@@ -241,6 +247,12 @@ loadScripts(document, 'script');
  • +
    +

    modulesFolder

    +
    public File modulesFolder
    +
    +
  • +
  • storageType

    private StorageType storageType
    @@ -277,6 +289,12 @@ loadScripts(document, 'script');
  • +
    +

    moduleManager

    +
    private ModuleManager moduleManager
    +
    +
  • +
  • rankManager

    private RankManager rankManager
    diff --git a/static/javadocs/dev/plex/PlexBase.html b/static/javadocs/dev/plex/PlexBase.html index a6d4b7d..2d4c1b3 100644 --- a/static/javadocs/dev/plex/PlexBase.html +++ b/static/javadocs/dev/plex/PlexBase.html @@ -2,7 +2,7 @@ -PlexBase (Plex 0.7 API) +PlexBase (Plex 0.8 API) @@ -72,7 +72,7 @@ loadScripts(document, 'script');
    Direct Known Subclasses:
    -
    AbstractService, CommandHandler, MongoConnection, PlexListener, PlexLog, PlexUtils, PunishedPlayer, PunishmentManager, RedisConnection, SQLConnection, UpdateChecker
    +
    AbstractService, AdminList, CommandHandler, MongoConnection, PlexListener, PlexLog, PlexUtils, PunishedPlayer, PunishmentManager, RedisConnection, SQLConnection, UpdateChecker

    public class PlexBase diff --git a/static/javadocs/dev/plex/admin/Admin.html b/static/javadocs/dev/plex/admin/Admin.html index ec263e3..f631f38 100644 --- a/static/javadocs/dev/plex/admin/Admin.html +++ b/static/javadocs/dev/plex/admin/Admin.html @@ -2,7 +2,7 @@ -Admin (Plex 0.7 API) +Admin (Plex 0.8 API) @@ -87,26 +87,26 @@ loadScripts(document, 'script');
    Field
    Description
    private boolean
    - +
    +
    Returns if the admin has admin chat toggled or not +
    + Contains a #isAdminChat and #setAdminChat by Lombok
    +
    +
    private boolean
    + +
    Returns if the admin has command spy or not
    - Contains a #isCommandSpy and #setCommandSpy by lombok
    + Contains a #isCommandSpy and #setCommandSpy by Lombok
    -
    private Rank
    - -
    +
    private Rank
    + +
    Gets the rank of the admin
    Contains a #setRank and #getRank by lombok
    -
    private boolean
    - -
    -
    Returns if the admin has staff chat toggled or not -
    - Contains a #isStaffChat and #setStaffChat by lombok
    -
    private UUID
    @@ -125,7 +125,7 @@ loadScripts(document, 'script');
    Description
    Admin(UUID uuid)
    -
    Creates an admin with the startig ADMIN rank
    +
    Creates an admin with the ADMIN rank as the default rank
    @@ -170,16 +170,16 @@ loadScripts(document, 'script');
    private boolean commandSpy
    Returns if the admin has command spy or not
    - Contains a #isCommandSpy and #setCommandSpy by lombok
    + Contains a #isCommandSpy and #setCommandSpy by Lombok
  • -
    -

    staffChat

    -
    private boolean staffChat
    -
    Returns if the admin has staff chat toggled or not +
    +

    adminChat

    +
    private boolean adminChat
    +
    Returns if the admin has admin chat toggled or not
    - Contains a #isStaffChat and #setStaffChat by lombok
    + Contains a #isAdminChat and #setAdminChat by Lombok
  • @@ -194,7 +194,7 @@ loadScripts(document, 'script');

    Admin

    public Admin(UUID uuid)
    -
    Creates an admin with the startig ADMIN rank
    +
    Creates an admin with the ADMIN rank as the default rank
    Parameters:
    uuid -
    diff --git a/static/javadocs/dev/plex/admin/AdminList.html b/static/javadocs/dev/plex/admin/AdminList.html index 9846c0e..396f414 100644 --- a/static/javadocs/dev/plex/admin/AdminList.html +++ b/static/javadocs/dev/plex/admin/AdminList.html @@ -2,7 +2,7 @@ -AdminList (Plex 0.7 API) +AdminList (Plex 0.8 API) @@ -71,12 +71,14 @@ loadScripts(document, 'script');

    Class AdminList

    java.lang.Object +
    dev.plex.PlexBase
    dev.plex.admin.AdminList
    +

    public class AdminList -extends Object
    +extends PlexBase
    Cached storage for Admin objects
    See Also:
    @@ -104,6 +106,9 @@ loadScripts(document, 'script');
    Key/Value storage, where the key is the unique ID of the admin
    +
    +

    Fields inherited from class dev.plex.PlexBase

    +plugin
    diff --git a/static/javadocs/dev/plex/admin/package-summary.html b/static/javadocs/dev/plex/admin/package-summary.html index 9af7d1b..03ed9ba 100644 --- a/static/javadocs/dev/plex/admin/package-summary.html +++ b/static/javadocs/dev/plex/admin/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.admin (Plex 0.7 API) +dev.plex.admin (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/admin/package-tree.html b/static/javadocs/dev/plex/admin/package-tree.html index da972b4..4f7098e 100644 --- a/static/javadocs/dev/plex/admin/package-tree.html +++ b/static/javadocs/dev/plex/admin/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.admin Class Hierarchy (Plex 0.7 API) +dev.plex.admin Class Hierarchy (Plex 0.8 API) @@ -59,10 +59,14 @@ loadScripts(document, 'script');
  • java.lang.Object +
  • +
    diff --git a/static/javadocs/dev/plex/cache/DataUtils.html b/static/javadocs/dev/plex/cache/DataUtils.html index dc64b4d..6309850 100644 --- a/static/javadocs/dev/plex/cache/DataUtils.html +++ b/static/javadocs/dev/plex/cache/DataUtils.html @@ -2,7 +2,7 @@ -DataUtils (Plex 0.7 API) +DataUtils (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/cache/MongoPlayerData.html b/static/javadocs/dev/plex/cache/MongoPlayerData.html index 36c6cc1..7751b43 100644 --- a/static/javadocs/dev/plex/cache/MongoPlayerData.html +++ b/static/javadocs/dev/plex/cache/MongoPlayerData.html @@ -2,7 +2,7 @@ -MongoPlayerData (Plex 0.7 API) +MongoPlayerData (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/cache/PlayerCache.html b/static/javadocs/dev/plex/cache/PlayerCache.html index 49c8bef..4bdf627 100644 --- a/static/javadocs/dev/plex/cache/PlayerCache.html +++ b/static/javadocs/dev/plex/cache/PlayerCache.html @@ -2,7 +2,7 @@ -PlayerCache (Plex 0.7 API) +PlayerCache (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/cache/SQLPlayerData.html b/static/javadocs/dev/plex/cache/SQLPlayerData.html index dccd8ff..7d8e516 100644 --- a/static/javadocs/dev/plex/cache/SQLPlayerData.html +++ b/static/javadocs/dev/plex/cache/SQLPlayerData.html @@ -2,7 +2,7 @@ -SQLPlayerData (Plex 0.7 API) +SQLPlayerData (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/cache/package-summary.html b/static/javadocs/dev/plex/cache/package-summary.html index abca17b..a5d823f 100644 --- a/static/javadocs/dev/plex/cache/package-summary.html +++ b/static/javadocs/dev/plex/cache/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.cache (Plex 0.7 API) +dev.plex.cache (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/cache/package-tree.html b/static/javadocs/dev/plex/cache/package-tree.html index e94ac12..abdb9d4 100644 --- a/static/javadocs/dev/plex/cache/package-tree.html +++ b/static/javadocs/dev/plex/cache/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.cache Class Hierarchy (Plex 0.7 API) +dev.plex.cache Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/PlexCommand.html b/static/javadocs/dev/plex/command/PlexCommand.html index 8372dbc..2feda4b 100644 --- a/static/javadocs/dev/plex/command/PlexCommand.html +++ b/static/javadocs/dev/plex/command/PlexCommand.html @@ -2,7 +2,7 @@ -PlexCommand (Plex 0.7 API) +PlexCommand (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/annotation/CommandParameters.html b/static/javadocs/dev/plex/command/annotation/CommandParameters.html index 2e7a076..97de3de 100644 --- a/static/javadocs/dev/plex/command/annotation/CommandParameters.html +++ b/static/javadocs/dev/plex/command/annotation/CommandParameters.html @@ -2,7 +2,7 @@ -CommandParameters (Plex 0.7 API) +CommandParameters (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/annotation/CommandPermissions.html b/static/javadocs/dev/plex/command/annotation/CommandPermissions.html index 600ef93..c81f0a0 100644 --- a/static/javadocs/dev/plex/command/annotation/CommandPermissions.html +++ b/static/javadocs/dev/plex/command/annotation/CommandPermissions.html @@ -2,7 +2,7 @@ -CommandPermissions (Plex 0.7 API) +CommandPermissions (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/annotation/package-summary.html b/static/javadocs/dev/plex/command/annotation/package-summary.html index 4dc1ff8..1d0baf0 100644 --- a/static/javadocs/dev/plex/command/annotation/package-summary.html +++ b/static/javadocs/dev/plex/command/annotation/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.command.annotation (Plex 0.7 API) +dev.plex.command.annotation (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/annotation/package-tree.html b/static/javadocs/dev/plex/command/annotation/package-tree.html index 1eb9099..3e244f4 100644 --- a/static/javadocs/dev/plex/command/annotation/package-tree.html +++ b/static/javadocs/dev/plex/command/annotation/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.command.annotation Class Hierarchy (Plex 0.7 API) +dev.plex.command.annotation Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/exception/CommandFailException.html b/static/javadocs/dev/plex/command/exception/CommandFailException.html index 3602c65..035dd23 100644 --- a/static/javadocs/dev/plex/command/exception/CommandFailException.html +++ b/static/javadocs/dev/plex/command/exception/CommandFailException.html @@ -2,7 +2,7 @@ -CommandFailException (Plex 0.7 API) +CommandFailException (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/exception/ConsoleMustDefinePlayerException.html b/static/javadocs/dev/plex/command/exception/ConsoleMustDefinePlayerException.html index 4844c0b..049862a 100644 --- a/static/javadocs/dev/plex/command/exception/ConsoleMustDefinePlayerException.html +++ b/static/javadocs/dev/plex/command/exception/ConsoleMustDefinePlayerException.html @@ -2,7 +2,7 @@ -ConsoleMustDefinePlayerException (Plex 0.7 API) +ConsoleMustDefinePlayerException (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/exception/ConsoleOnlyException.html b/static/javadocs/dev/plex/command/exception/ConsoleOnlyException.html index ec213e3..cb80ebd 100644 --- a/static/javadocs/dev/plex/command/exception/ConsoleOnlyException.html +++ b/static/javadocs/dev/plex/command/exception/ConsoleOnlyException.html @@ -2,7 +2,7 @@ -ConsoleOnlyException (Plex 0.7 API) +ConsoleOnlyException (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/exception/PlayerNotBannedException.html b/static/javadocs/dev/plex/command/exception/PlayerNotBannedException.html index 8f5ae65..a966ee4 100644 --- a/static/javadocs/dev/plex/command/exception/PlayerNotBannedException.html +++ b/static/javadocs/dev/plex/command/exception/PlayerNotBannedException.html @@ -2,7 +2,7 @@ -PlayerNotBannedException (Plex 0.7 API) +PlayerNotBannedException (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/exception/PlayerNotFoundException.html b/static/javadocs/dev/plex/command/exception/PlayerNotFoundException.html index 6ac7c7c..2cff970 100644 --- a/static/javadocs/dev/plex/command/exception/PlayerNotFoundException.html +++ b/static/javadocs/dev/plex/command/exception/PlayerNotFoundException.html @@ -2,7 +2,7 @@ -PlayerNotFoundException (Plex 0.7 API) +PlayerNotFoundException (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/exception/package-summary.html b/static/javadocs/dev/plex/command/exception/package-summary.html index 36507a7..11cd910 100644 --- a/static/javadocs/dev/plex/command/exception/package-summary.html +++ b/static/javadocs/dev/plex/command/exception/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.command.exception (Plex 0.7 API) +dev.plex.command.exception (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/exception/package-tree.html b/static/javadocs/dev/plex/command/exception/package-tree.html index a8b8a8f..ece0f0b 100644 --- a/static/javadocs/dev/plex/command/exception/package-tree.html +++ b/static/javadocs/dev/plex/command/exception/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.command.exception Class Hierarchy (Plex 0.7 API) +dev.plex.command.exception Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/AdminCMD.html b/static/javadocs/dev/plex/command/impl/AdminCMD.html index 743d57f..1e161f0 100644 --- a/static/javadocs/dev/plex/command/impl/AdminCMD.html +++ b/static/javadocs/dev/plex/command/impl/AdminCMD.html @@ -2,7 +2,7 @@ -AdminCMD (Plex 0.7 API) +AdminCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/AdminChatCMD.html b/static/javadocs/dev/plex/command/impl/AdminChatCMD.html index 0227186..3816ebc 100644 --- a/static/javadocs/dev/plex/command/impl/AdminChatCMD.html +++ b/static/javadocs/dev/plex/command/impl/AdminChatCMD.html @@ -2,7 +2,7 @@ -AdminChatCMD (Plex 0.7 API) +AdminChatCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/AdminworldCMD.html b/static/javadocs/dev/plex/command/impl/AdminworldCMD.html index 2e16a49..87defd5 100644 --- a/static/javadocs/dev/plex/command/impl/AdminworldCMD.html +++ b/static/javadocs/dev/plex/command/impl/AdminworldCMD.html @@ -2,7 +2,7 @@ -AdminworldCMD (Plex 0.7 API) +AdminworldCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/AdventureCMD.html b/static/javadocs/dev/plex/command/impl/AdventureCMD.html index d828350..22eb330 100644 --- a/static/javadocs/dev/plex/command/impl/AdventureCMD.html +++ b/static/javadocs/dev/plex/command/impl/AdventureCMD.html @@ -2,7 +2,7 @@ -AdventureCMD (Plex 0.7 API) +AdventureCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/BanCMD.html b/static/javadocs/dev/plex/command/impl/BanCMD.html index 2465029..ef600e4 100644 --- a/static/javadocs/dev/plex/command/impl/BanCMD.html +++ b/static/javadocs/dev/plex/command/impl/BanCMD.html @@ -2,7 +2,7 @@ -BanCMD (Plex 0.7 API) +BanCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/CommandSpyCMD.html b/static/javadocs/dev/plex/command/impl/CommandSpyCMD.html index 4adca12..6e77475 100644 --- a/static/javadocs/dev/plex/command/impl/CommandSpyCMD.html +++ b/static/javadocs/dev/plex/command/impl/CommandSpyCMD.html @@ -2,7 +2,7 @@ -CommandSpyCMD (Plex 0.7 API) +CommandSpyCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/CreativeCMD.html b/static/javadocs/dev/plex/command/impl/CreativeCMD.html index 31251d6..2f094b0 100644 --- a/static/javadocs/dev/plex/command/impl/CreativeCMD.html +++ b/static/javadocs/dev/plex/command/impl/CreativeCMD.html @@ -2,7 +2,7 @@ -CreativeCMD (Plex 0.7 API) +CreativeCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/DebugCMD.html b/static/javadocs/dev/plex/command/impl/DebugCMD.html index d6c4b35..e8e08a1 100644 --- a/static/javadocs/dev/plex/command/impl/DebugCMD.html +++ b/static/javadocs/dev/plex/command/impl/DebugCMD.html @@ -2,7 +2,7 @@ -DebugCMD (Plex 0.7 API) +DebugCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/DeopAllCMD.html b/static/javadocs/dev/plex/command/impl/DeopAllCMD.html index 4bdd673..dc37e41 100644 --- a/static/javadocs/dev/plex/command/impl/DeopAllCMD.html +++ b/static/javadocs/dev/plex/command/impl/DeopAllCMD.html @@ -2,7 +2,7 @@ -DeopAllCMD (Plex 0.7 API) +DeopAllCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/DeopCMD.html b/static/javadocs/dev/plex/command/impl/DeopCMD.html index 93a1f50..81024c4 100644 --- a/static/javadocs/dev/plex/command/impl/DeopCMD.html +++ b/static/javadocs/dev/plex/command/impl/DeopCMD.html @@ -2,7 +2,7 @@ -DeopCMD (Plex 0.7 API) +DeopCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/FlatlandsCMD.html b/static/javadocs/dev/plex/command/impl/FlatlandsCMD.html index 21f5b82..74e73fa 100644 --- a/static/javadocs/dev/plex/command/impl/FlatlandsCMD.html +++ b/static/javadocs/dev/plex/command/impl/FlatlandsCMD.html @@ -2,7 +2,7 @@ -FlatlandsCMD (Plex 0.7 API) +FlatlandsCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/FreezeCMD.html b/static/javadocs/dev/plex/command/impl/FreezeCMD.html index 7821696..b9de27a 100644 --- a/static/javadocs/dev/plex/command/impl/FreezeCMD.html +++ b/static/javadocs/dev/plex/command/impl/FreezeCMD.html @@ -2,7 +2,7 @@ -FreezeCMD (Plex 0.7 API) +FreezeCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/KickCMD.html b/static/javadocs/dev/plex/command/impl/KickCMD.html index fefcba9..7a1684f 100644 --- a/static/javadocs/dev/plex/command/impl/KickCMD.html +++ b/static/javadocs/dev/plex/command/impl/KickCMD.html @@ -2,7 +2,7 @@ -KickCMD (Plex 0.7 API) +KickCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/ListCMD.html b/static/javadocs/dev/plex/command/impl/ListCMD.html index dc16794..8cd63d2 100644 --- a/static/javadocs/dev/plex/command/impl/ListCMD.html +++ b/static/javadocs/dev/plex/command/impl/ListCMD.html @@ -2,7 +2,7 @@ -ListCMD (Plex 0.7 API) +ListCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/LocalSpawnCMD.html b/static/javadocs/dev/plex/command/impl/LocalSpawnCMD.html index b72724a..e2b473a 100644 --- a/static/javadocs/dev/plex/command/impl/LocalSpawnCMD.html +++ b/static/javadocs/dev/plex/command/impl/LocalSpawnCMD.html @@ -2,7 +2,7 @@ -LocalSpawnCMD (Plex 0.7 API) +LocalSpawnCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/LockupCMD.html b/static/javadocs/dev/plex/command/impl/LockupCMD.html index 40cd414..6e345c8 100644 --- a/static/javadocs/dev/plex/command/impl/LockupCMD.html +++ b/static/javadocs/dev/plex/command/impl/LockupCMD.html @@ -2,7 +2,7 @@ -LockupCMD (Plex 0.7 API) +LockupCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/MasterbuilderworldCMD.html b/static/javadocs/dev/plex/command/impl/MasterbuilderworldCMD.html index 810182e..999af47 100644 --- a/static/javadocs/dev/plex/command/impl/MasterbuilderworldCMD.html +++ b/static/javadocs/dev/plex/command/impl/MasterbuilderworldCMD.html @@ -2,7 +2,7 @@ -MasterbuilderworldCMD (Plex 0.7 API) +MasterbuilderworldCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/MuteCMD.html b/static/javadocs/dev/plex/command/impl/MuteCMD.html index 7ea9d46..2e1637a 100644 --- a/static/javadocs/dev/plex/command/impl/MuteCMD.html +++ b/static/javadocs/dev/plex/command/impl/MuteCMD.html @@ -2,7 +2,7 @@ -MuteCMD (Plex 0.7 API) +MuteCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/NameHistoryCMD.html b/static/javadocs/dev/plex/command/impl/NameHistoryCMD.html index 9a3c9a8..9f11774 100644 --- a/static/javadocs/dev/plex/command/impl/NameHistoryCMD.html +++ b/static/javadocs/dev/plex/command/impl/NameHistoryCMD.html @@ -2,7 +2,7 @@ -NameHistoryCMD (Plex 0.7 API) +NameHistoryCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/OpAllCMD.html b/static/javadocs/dev/plex/command/impl/OpAllCMD.html index 89e6964..b066291 100644 --- a/static/javadocs/dev/plex/command/impl/OpAllCMD.html +++ b/static/javadocs/dev/plex/command/impl/OpAllCMD.html @@ -2,7 +2,7 @@ -OpAllCMD (Plex 0.7 API) +OpAllCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/OpCMD.html b/static/javadocs/dev/plex/command/impl/OpCMD.html index 8c109b7..3f2aa04 100644 --- a/static/javadocs/dev/plex/command/impl/OpCMD.html +++ b/static/javadocs/dev/plex/command/impl/OpCMD.html @@ -2,7 +2,7 @@ -OpCMD (Plex 0.7 API) +OpCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/PlexCMD.html b/static/javadocs/dev/plex/command/impl/PlexCMD.html index 9502561..ca3c8bc 100644 --- a/static/javadocs/dev/plex/command/impl/PlexCMD.html +++ b/static/javadocs/dev/plex/command/impl/PlexCMD.html @@ -2,7 +2,7 @@ -PlexCMD (Plex 0.7 API) +PlexCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/PunishmentsCMD.html b/static/javadocs/dev/plex/command/impl/PunishmentsCMD.html index eee5de8..80174e0 100644 --- a/static/javadocs/dev/plex/command/impl/PunishmentsCMD.html +++ b/static/javadocs/dev/plex/command/impl/PunishmentsCMD.html @@ -2,7 +2,7 @@ -PunishmentsCMD (Plex 0.7 API) +PunishmentsCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/RankCMD.html b/static/javadocs/dev/plex/command/impl/RankCMD.html index 4f5e377..c7286cf 100644 --- a/static/javadocs/dev/plex/command/impl/RankCMD.html +++ b/static/javadocs/dev/plex/command/impl/RankCMD.html @@ -2,7 +2,7 @@ -RankCMD (Plex 0.7 API) +RankCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/RawSayCMD.html b/static/javadocs/dev/plex/command/impl/RawSayCMD.html index 0167d64..14d1155 100644 --- a/static/javadocs/dev/plex/command/impl/RawSayCMD.html +++ b/static/javadocs/dev/plex/command/impl/RawSayCMD.html @@ -2,7 +2,7 @@ -RawSayCMD (Plex 0.7 API) +RawSayCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/SpectatorCMD.html b/static/javadocs/dev/plex/command/impl/SpectatorCMD.html index 9c465ee..4b9ed69 100644 --- a/static/javadocs/dev/plex/command/impl/SpectatorCMD.html +++ b/static/javadocs/dev/plex/command/impl/SpectatorCMD.html @@ -2,7 +2,7 @@ -SpectatorCMD (Plex 0.7 API) +SpectatorCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/SurvivalCMD.html b/static/javadocs/dev/plex/command/impl/SurvivalCMD.html index 9d8f049..c2787db 100644 --- a/static/javadocs/dev/plex/command/impl/SurvivalCMD.html +++ b/static/javadocs/dev/plex/command/impl/SurvivalCMD.html @@ -2,7 +2,7 @@ -SurvivalCMD (Plex 0.7 API) +SurvivalCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/TagCMD.html b/static/javadocs/dev/plex/command/impl/TagCMD.html index 394f0b6..53000b7 100644 --- a/static/javadocs/dev/plex/command/impl/TagCMD.html +++ b/static/javadocs/dev/plex/command/impl/TagCMD.html @@ -2,7 +2,7 @@ -TagCMD (Plex 0.7 API) +TagCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/TempbanCMD.html b/static/javadocs/dev/plex/command/impl/TempbanCMD.html index 017f283..55f98cd 100644 --- a/static/javadocs/dev/plex/command/impl/TempbanCMD.html +++ b/static/javadocs/dev/plex/command/impl/TempbanCMD.html @@ -2,7 +2,7 @@ -TempbanCMD (Plex 0.7 API) +TempbanCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/UnbanCMD.html b/static/javadocs/dev/plex/command/impl/UnbanCMD.html index dc8dff1..b0352f5 100644 --- a/static/javadocs/dev/plex/command/impl/UnbanCMD.html +++ b/static/javadocs/dev/plex/command/impl/UnbanCMD.html @@ -2,7 +2,7 @@ -UnbanCMD (Plex 0.7 API) +UnbanCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/UnfreezeCMD.html b/static/javadocs/dev/plex/command/impl/UnfreezeCMD.html index 47d3031..5ec5c71 100644 --- a/static/javadocs/dev/plex/command/impl/UnfreezeCMD.html +++ b/static/javadocs/dev/plex/command/impl/UnfreezeCMD.html @@ -2,7 +2,7 @@ -UnfreezeCMD (Plex 0.7 API) +UnfreezeCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/UnmuteCMD.html b/static/javadocs/dev/plex/command/impl/UnmuteCMD.html index 3d79628..5a7ab75 100644 --- a/static/javadocs/dev/plex/command/impl/UnmuteCMD.html +++ b/static/javadocs/dev/plex/command/impl/UnmuteCMD.html @@ -2,7 +2,7 @@ -UnmuteCMD (Plex 0.7 API) +UnmuteCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/WorldCMD.html b/static/javadocs/dev/plex/command/impl/WorldCMD.html index c7f06cc..8362c4f 100644 --- a/static/javadocs/dev/plex/command/impl/WorldCMD.html +++ b/static/javadocs/dev/plex/command/impl/WorldCMD.html @@ -2,7 +2,7 @@ -WorldCMD (Plex 0.7 API) +WorldCMD (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/package-summary.html b/static/javadocs/dev/plex/command/impl/package-summary.html index cf53e13..93e3833 100644 --- a/static/javadocs/dev/plex/command/impl/package-summary.html +++ b/static/javadocs/dev/plex/command/impl/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.command.impl (Plex 0.7 API) +dev.plex.command.impl (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/impl/package-tree.html b/static/javadocs/dev/plex/command/impl/package-tree.html index a0e4f8e..2ea70c8 100644 --- a/static/javadocs/dev/plex/command/impl/package-tree.html +++ b/static/javadocs/dev/plex/command/impl/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.command.impl Class Hierarchy (Plex 0.7 API) +dev.plex.command.impl Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/package-summary.html b/static/javadocs/dev/plex/command/package-summary.html index a7e3703..2a69a74 100644 --- a/static/javadocs/dev/plex/command/package-summary.html +++ b/static/javadocs/dev/plex/command/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.command (Plex 0.7 API) +dev.plex.command (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/package-tree.html b/static/javadocs/dev/plex/command/package-tree.html index 303b7c0..d22ca5e 100644 --- a/static/javadocs/dev/plex/command/package-tree.html +++ b/static/javadocs/dev/plex/command/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.command Class Hierarchy (Plex 0.7 API) +dev.plex.command Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/source/RequiredCommandSource.html b/static/javadocs/dev/plex/command/source/RequiredCommandSource.html index af9016a..5d4c0d9 100644 --- a/static/javadocs/dev/plex/command/source/RequiredCommandSource.html +++ b/static/javadocs/dev/plex/command/source/RequiredCommandSource.html @@ -2,7 +2,7 @@ -RequiredCommandSource (Plex 0.7 API) +RequiredCommandSource (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/source/package-summary.html b/static/javadocs/dev/plex/command/source/package-summary.html index 713e035..2e07b2b 100644 --- a/static/javadocs/dev/plex/command/source/package-summary.html +++ b/static/javadocs/dev/plex/command/source/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.command.source (Plex 0.7 API) +dev.plex.command.source (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/command/source/package-tree.html b/static/javadocs/dev/plex/command/source/package-tree.html index b3367ea..cbc0d9d 100644 --- a/static/javadocs/dev/plex/command/source/package-tree.html +++ b/static/javadocs/dev/plex/command/source/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.command.source Class Hierarchy (Plex 0.7 API) +dev.plex.command.source Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/config/Config.html b/static/javadocs/dev/plex/config/Config.html index a05a820..2540fd4 100644 --- a/static/javadocs/dev/plex/config/Config.html +++ b/static/javadocs/dev/plex/config/Config.html @@ -2,7 +2,7 @@ -Config (Plex 0.7 API) +Config (Plex 0.8 API) @@ -163,17 +163,20 @@ loadScripts(document, 'script');
    Description
    void
    -
    +
     
    +
    void
    +
    load(boolean loadFromFile)
    +
    Loads the configuration file
    -
    void
    - -
    +
    void
    + +
    Saves the configuration file
    -
    private void
    - -
    +
    private void
    + +
    Moves the configuration file from the plugin's resources folder to the data folder (plugins/Plex/)
    @@ -269,6 +272,12 @@ loadScripts(document, 'script');

    load

    public void load()
    +
    + +
  • +
    +

    load

    +
    public void load(boolean loadFromFile)
    Loads the configuration file
  • diff --git a/static/javadocs/dev/plex/config/package-summary.html b/static/javadocs/dev/plex/config/package-summary.html index d230fc7..1ebe83e 100644 --- a/static/javadocs/dev/plex/config/package-summary.html +++ b/static/javadocs/dev/plex/config/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.config (Plex 0.7 API) +dev.plex.config (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/config/package-tree.html b/static/javadocs/dev/plex/config/package-tree.html index b73fd29..bca4a00 100644 --- a/static/javadocs/dev/plex/config/package-tree.html +++ b/static/javadocs/dev/plex/config/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.config Class Hierarchy (Plex 0.7 API) +dev.plex.config Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/event/AdminAddEvent.html b/static/javadocs/dev/plex/event/AdminAddEvent.html index 8ae380d..2a7fe28 100644 --- a/static/javadocs/dev/plex/event/AdminAddEvent.html +++ b/static/javadocs/dev/plex/event/AdminAddEvent.html @@ -2,7 +2,7 @@ -AdminAddEvent (Plex 0.7 API) +AdminAddEvent (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/event/AdminRemoveEvent.html b/static/javadocs/dev/plex/event/AdminRemoveEvent.html index 790940f..194a888 100644 --- a/static/javadocs/dev/plex/event/AdminRemoveEvent.html +++ b/static/javadocs/dev/plex/event/AdminRemoveEvent.html @@ -2,7 +2,7 @@ -AdminRemoveEvent (Plex 0.7 API) +AdminRemoveEvent (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/event/AdminSetRankEvent.html b/static/javadocs/dev/plex/event/AdminSetRankEvent.html index e2e3f6c..ca16a45 100644 --- a/static/javadocs/dev/plex/event/AdminSetRankEvent.html +++ b/static/javadocs/dev/plex/event/AdminSetRankEvent.html @@ -2,7 +2,7 @@ -AdminSetRankEvent (Plex 0.7 API) +AdminSetRankEvent (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/event/GameModeUpdateEvent.html b/static/javadocs/dev/plex/event/GameModeUpdateEvent.html index 87d7a2c..cbcc0b7 100644 --- a/static/javadocs/dev/plex/event/GameModeUpdateEvent.html +++ b/static/javadocs/dev/plex/event/GameModeUpdateEvent.html @@ -2,7 +2,7 @@ -GameModeUpdateEvent (Plex 0.7 API) +GameModeUpdateEvent (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/event/PunishedPlayerEvent.html b/static/javadocs/dev/plex/event/PunishedPlayerEvent.html index f6554af..20f6cb1 100644 --- a/static/javadocs/dev/plex/event/PunishedPlayerEvent.html +++ b/static/javadocs/dev/plex/event/PunishedPlayerEvent.html @@ -2,7 +2,7 @@ -PunishedPlayerEvent (Plex 0.7 API) +PunishedPlayerEvent (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/event/PunishedPlayerFreezeEvent.html b/static/javadocs/dev/plex/event/PunishedPlayerFreezeEvent.html index 2fc6382..64b7066 100644 --- a/static/javadocs/dev/plex/event/PunishedPlayerFreezeEvent.html +++ b/static/javadocs/dev/plex/event/PunishedPlayerFreezeEvent.html @@ -2,7 +2,7 @@ -PunishedPlayerFreezeEvent (Plex 0.7 API) +PunishedPlayerFreezeEvent (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/event/PunishedPlayerLockupEvent.html b/static/javadocs/dev/plex/event/PunishedPlayerLockupEvent.html index 40cad82..01fe6e6 100644 --- a/static/javadocs/dev/plex/event/PunishedPlayerLockupEvent.html +++ b/static/javadocs/dev/plex/event/PunishedPlayerLockupEvent.html @@ -2,7 +2,7 @@ -PunishedPlayerLockupEvent (Plex 0.7 API) +PunishedPlayerLockupEvent (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/event/PunishedPlayerMuteEvent.html b/static/javadocs/dev/plex/event/PunishedPlayerMuteEvent.html index a3c8dbe..af40036 100644 --- a/static/javadocs/dev/plex/event/PunishedPlayerMuteEvent.html +++ b/static/javadocs/dev/plex/event/PunishedPlayerMuteEvent.html @@ -2,7 +2,7 @@ -PunishedPlayerMuteEvent (Plex 0.7 API) +PunishedPlayerMuteEvent (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/event/package-summary.html b/static/javadocs/dev/plex/event/package-summary.html index 7caad10..2efaaf0 100644 --- a/static/javadocs/dev/plex/event/package-summary.html +++ b/static/javadocs/dev/plex/event/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.event (Plex 0.7 API) +dev.plex.event (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/event/package-tree.html b/static/javadocs/dev/plex/event/package-tree.html index 246af8a..40bd9aa 100644 --- a/static/javadocs/dev/plex/event/package-tree.html +++ b/static/javadocs/dev/plex/event/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.event Class Hierarchy (Plex 0.7 API) +dev.plex.event Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/handlers/CommandHandler.html b/static/javadocs/dev/plex/handlers/CommandHandler.html index 9d0abe5..6ade7e8 100644 --- a/static/javadocs/dev/plex/handlers/CommandHandler.html +++ b/static/javadocs/dev/plex/handlers/CommandHandler.html @@ -2,7 +2,7 @@ -CommandHandler (Plex 0.7 API) +CommandHandler (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/handlers/ListenerHandler.html b/static/javadocs/dev/plex/handlers/ListenerHandler.html index a92a42a..6535fe3 100644 --- a/static/javadocs/dev/plex/handlers/ListenerHandler.html +++ b/static/javadocs/dev/plex/handlers/ListenerHandler.html @@ -2,7 +2,7 @@ -ListenerHandler (Plex 0.7 API) +ListenerHandler (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/handlers/package-summary.html b/static/javadocs/dev/plex/handlers/package-summary.html index ed20b40..021fd21 100644 --- a/static/javadocs/dev/plex/handlers/package-summary.html +++ b/static/javadocs/dev/plex/handlers/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.handlers (Plex 0.7 API) +dev.plex.handlers (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/handlers/package-tree.html b/static/javadocs/dev/plex/handlers/package-tree.html index 04c12f6..9a7ffbf 100644 --- a/static/javadocs/dev/plex/handlers/package-tree.html +++ b/static/javadocs/dev/plex/handlers/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.handlers Class Hierarchy (Plex 0.7 API) +dev.plex.handlers Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/PlexListener.html b/static/javadocs/dev/plex/listener/PlexListener.html index 9ca3aea..86be9eb 100644 --- a/static/javadocs/dev/plex/listener/PlexListener.html +++ b/static/javadocs/dev/plex/listener/PlexListener.html @@ -2,7 +2,7 @@ -PlexListener (Plex 0.7 API) +PlexListener (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/impl/AdminListener.html b/static/javadocs/dev/plex/listener/impl/AdminListener.html index 8d88571..272cd94 100644 --- a/static/javadocs/dev/plex/listener/impl/AdminListener.html +++ b/static/javadocs/dev/plex/listener/impl/AdminListener.html @@ -2,7 +2,7 @@ -AdminListener (Plex 0.7 API) +AdminListener (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/impl/BanListener.html b/static/javadocs/dev/plex/listener/impl/BanListener.html index 50520e7..35f3d33 100644 --- a/static/javadocs/dev/plex/listener/impl/BanListener.html +++ b/static/javadocs/dev/plex/listener/impl/BanListener.html @@ -2,7 +2,7 @@ -BanListener (Plex 0.7 API) +BanListener (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/impl/ChatListener.PlexChatRenderer.html b/static/javadocs/dev/plex/listener/impl/ChatListener.PlexChatRenderer.html index 53876c4..7f6abef 100644 --- a/static/javadocs/dev/plex/listener/impl/ChatListener.PlexChatRenderer.html +++ b/static/javadocs/dev/plex/listener/impl/ChatListener.PlexChatRenderer.html @@ -2,7 +2,7 @@ -ChatListener.PlexChatRenderer (Plex 0.7 API) +ChatListener.PlexChatRenderer (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/impl/ChatListener.html b/static/javadocs/dev/plex/listener/impl/ChatListener.html index 6fe8332..256a850 100644 --- a/static/javadocs/dev/plex/listener/impl/ChatListener.html +++ b/static/javadocs/dev/plex/listener/impl/ChatListener.html @@ -2,7 +2,7 @@ -ChatListener (Plex 0.7 API) +ChatListener (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/impl/CommandListener.html b/static/javadocs/dev/plex/listener/impl/CommandListener.html index 351e100..a5a5671 100644 --- a/static/javadocs/dev/plex/listener/impl/CommandListener.html +++ b/static/javadocs/dev/plex/listener/impl/CommandListener.html @@ -2,7 +2,7 @@ -CommandListener (Plex 0.7 API) +CommandListener (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/impl/FreezeListener.html b/static/javadocs/dev/plex/listener/impl/FreezeListener.html index e2b5bdb..50d2593 100644 --- a/static/javadocs/dev/plex/listener/impl/FreezeListener.html +++ b/static/javadocs/dev/plex/listener/impl/FreezeListener.html @@ -2,7 +2,7 @@ -FreezeListener (Plex 0.7 API) +FreezeListener (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/impl/GameModeListener.html b/static/javadocs/dev/plex/listener/impl/GameModeListener.html index 875702c..ca2f4b6 100644 --- a/static/javadocs/dev/plex/listener/impl/GameModeListener.html +++ b/static/javadocs/dev/plex/listener/impl/GameModeListener.html @@ -2,7 +2,7 @@ -GameModeListener (Plex 0.7 API) +GameModeListener (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/impl/PlayerListener.html b/static/javadocs/dev/plex/listener/impl/PlayerListener.html index 0f87a5d..b722777 100644 --- a/static/javadocs/dev/plex/listener/impl/PlayerListener.html +++ b/static/javadocs/dev/plex/listener/impl/PlayerListener.html @@ -2,7 +2,7 @@ -PlayerListener (Plex 0.7 API) +PlayerListener (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/impl/ServerListener.html b/static/javadocs/dev/plex/listener/impl/ServerListener.html index 3dfa27e..c58daf1 100644 --- a/static/javadocs/dev/plex/listener/impl/ServerListener.html +++ b/static/javadocs/dev/plex/listener/impl/ServerListener.html @@ -2,7 +2,7 @@ -ServerListener (Plex 0.7 API) +ServerListener (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/impl/WorldListener.html b/static/javadocs/dev/plex/listener/impl/WorldListener.html index 2771b54..6de9adc 100644 --- a/static/javadocs/dev/plex/listener/impl/WorldListener.html +++ b/static/javadocs/dev/plex/listener/impl/WorldListener.html @@ -2,7 +2,7 @@ -WorldListener (Plex 0.7 API) +WorldListener (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/impl/package-summary.html b/static/javadocs/dev/plex/listener/impl/package-summary.html index 296b88d..45b15eb 100644 --- a/static/javadocs/dev/plex/listener/impl/package-summary.html +++ b/static/javadocs/dev/plex/listener/impl/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.listener.impl (Plex 0.7 API) +dev.plex.listener.impl (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/impl/package-tree.html b/static/javadocs/dev/plex/listener/impl/package-tree.html index 8beec28..f1616a9 100644 --- a/static/javadocs/dev/plex/listener/impl/package-tree.html +++ b/static/javadocs/dev/plex/listener/impl/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.listener.impl Class Hierarchy (Plex 0.7 API) +dev.plex.listener.impl Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/package-summary.html b/static/javadocs/dev/plex/listener/package-summary.html index b5eea6c..f7ab252 100644 --- a/static/javadocs/dev/plex/listener/package-summary.html +++ b/static/javadocs/dev/plex/listener/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.listener (Plex 0.7 API) +dev.plex.listener (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/listener/package-tree.html b/static/javadocs/dev/plex/listener/package-tree.html index b13b0c5..c3fc759 100644 --- a/static/javadocs/dev/plex/listener/package-tree.html +++ b/static/javadocs/dev/plex/listener/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.listener Class Hierarchy (Plex 0.7 API) +dev.plex.listener Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/menu/PunishedPlayerMenu.html b/static/javadocs/dev/plex/menu/PunishedPlayerMenu.html index cb7ebcb..39fb317 100644 --- a/static/javadocs/dev/plex/menu/PunishedPlayerMenu.html +++ b/static/javadocs/dev/plex/menu/PunishedPlayerMenu.html @@ -2,7 +2,7 @@ -PunishedPlayerMenu (Plex 0.7 API) +PunishedPlayerMenu (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/menu/PunishmentMenu.html b/static/javadocs/dev/plex/menu/PunishmentMenu.html index 78876d7..6bfe1ea 100644 --- a/static/javadocs/dev/plex/menu/PunishmentMenu.html +++ b/static/javadocs/dev/plex/menu/PunishmentMenu.html @@ -2,7 +2,7 @@ -PunishmentMenu (Plex 0.7 API) +PunishmentMenu (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/menu/package-summary.html b/static/javadocs/dev/plex/menu/package-summary.html index 90f16c5..5e89871 100644 --- a/static/javadocs/dev/plex/menu/package-summary.html +++ b/static/javadocs/dev/plex/menu/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.menu (Plex 0.7 API) +dev.plex.menu (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/menu/package-tree.html b/static/javadocs/dev/plex/menu/package-tree.html index cbf55f6..da5e92a 100644 --- a/static/javadocs/dev/plex/menu/package-tree.html +++ b/static/javadocs/dev/plex/menu/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.menu Class Hierarchy (Plex 0.7 API) +dev.plex.menu Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/module/ModuleManager.html b/static/javadocs/dev/plex/module/ModuleManager.html new file mode 100644 index 0000000..d8b77d2 --- /dev/null +++ b/static/javadocs/dev/plex/module/ModuleManager.html @@ -0,0 +1,222 @@ + + + + +ModuleManager (Plex 0.8 API) + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class ModuleManager

    +
    +
    java.lang.Object +
    dev.plex.module.ModuleManager
    +
    +
    +
    +
    public class ModuleManager +extends Object
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Field Details

      + +
      +
    • + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        ModuleManager

        +
        public ModuleManager()
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        loadAllModules

        +
        public void loadAllModules()
        +
        +
      • +
      • +
        +

        loadModules

        +
        public void loadModules()
        +
        +
      • +
      • +
        +

        enableModules

        +
        public void enableModules()
        +
        +
      • +
      • +
        +

        disableModules

        +
        public void disableModules()
        +
        +
      • +
      • +
        +

        unloadModules

        +
        public void unloadModules()
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + + diff --git a/static/javadocs/dev/plex/module/PlexModule.html b/static/javadocs/dev/plex/module/PlexModule.html new file mode 100644 index 0000000..212985f --- /dev/null +++ b/static/javadocs/dev/plex/module/PlexModule.html @@ -0,0 +1,294 @@ + + + + +PlexModule (Plex 0.8 API) + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class PlexModule

    +
    +
    java.lang.Object +
    dev.plex.module.PlexModule
    +
    +
    +
    +
    public abstract class PlexModule +extends Object
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Field Details

      +
        +
      • +
        +

        commands

        +
        private final List<PlexCommand> commands
        +
        +
      • +
      • +
        +

        listeners

        +
        private final List<PlexListener> listeners
        +
        +
      • +
      • +
        +

        plex

        +
        private Plex plex
        +
        +
      • +
      • +
        +

        plexModuleFile

        +
        private PlexModuleFile plexModuleFile
        +
        +
      • +
      • +
        +

        dataFolder

        +
        private File dataFolder
        +
        +
      • +
      • +
        +

        logger

        +
        private org.apache.logging.log4j.Logger logger
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        PlexModule

        +
        public PlexModule()
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        load

        +
        public void load()
        +
        +
      • +
      • +
        +

        enable

        +
        public void enable()
        +
        +
      • +
      • +
        +

        disable

        +
        public void disable()
        +
        +
      • +
      • +
        +

        registerListener

        +
        public void registerListener(PlexListener listener)
        +
        +
      • +
      • +
        +

        unregisterListener

        +
        public void unregisterListener(PlexListener listener)
        +
        +
      • +
      • +
        +

        registerCommand

        +
        public void registerCommand(PlexCommand command)
        +
        +
      • +
      • +
        +

        unregisterCommand

        +
        public void unregisterCommand(PlexCommand command)
        +
        +
      • +
      • +
        +

        getCommand

        +
        public PlexCommand getCommand(String name)
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + + diff --git a/static/javadocs/dev/plex/module/PlexModuleFile.html b/static/javadocs/dev/plex/module/PlexModuleFile.html new file mode 100644 index 0000000..0ba0533 --- /dev/null +++ b/static/javadocs/dev/plex/module/PlexModuleFile.html @@ -0,0 +1,182 @@ + + + + +PlexModuleFile (Plex 0.8 API) + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class PlexModuleFile

    +
    +
    java.lang.Object +
    dev.plex.module.PlexModuleFile
    +
    +
    +
    +
    public class PlexModuleFile +extends Object
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Field Details

      +
        +
      • +
        +

        name

        +
        private final String name
        +
        +
      • +
      • +
        +

        main

        +
        private final String main
        +
        +
      • +
      • +
        +

        description

        +
        private final String description
        +
        +
      • +
      • +
        +

        version

        +
        private final String version
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        PlexModuleFile

        +
        public PlexModuleFile()
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + + diff --git a/static/javadocs/dev/plex/module/exception/ModuleLoadException.html b/static/javadocs/dev/plex/module/exception/ModuleLoadException.html new file mode 100644 index 0000000..235ec51 --- /dev/null +++ b/static/javadocs/dev/plex/module/exception/ModuleLoadException.html @@ -0,0 +1,147 @@ + + + + +ModuleLoadException (Plex 0.8 API) + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class ModuleLoadException

    +
    +
    java.lang.Object +
    java.lang.Throwable +
    java.lang.Exception +
    java.lang.RuntimeException +
    dev.plex.module.exception.ModuleLoadException
    +
    +
    +
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    public class ModuleLoadException +extends RuntimeException
    +
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        ModuleLoadException

        +
        public ModuleLoadException(String s)
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + + diff --git a/static/javadocs/dev/plex/module/exception/package-summary.html b/static/javadocs/dev/plex/module/exception/package-summary.html new file mode 100644 index 0000000..f3fb4e8 --- /dev/null +++ b/static/javadocs/dev/plex/module/exception/package-summary.html @@ -0,0 +1,92 @@ + + + + +dev.plex.module.exception (Plex 0.8 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Package dev.plex.module.exception

    +
    +
    +
    package dev.plex.module.exception
    +
    + +
    +
    +
    +
    + + diff --git a/static/javadocs/dev/plex/module/exception/package-tree.html b/static/javadocs/dev/plex/module/exception/package-tree.html new file mode 100644 index 0000000..164b010 --- /dev/null +++ b/static/javadocs/dev/plex/module/exception/package-tree.html @@ -0,0 +1,82 @@ + + + + +dev.plex.module.exception Class Hierarchy (Plex 0.8 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Hierarchy For Package dev.plex.module.exception

    +Package Hierarchies: + +
    +
    +

    Class Hierarchy

    + +
    +
    +
    +
    + + diff --git a/static/javadocs/dev/plex/module/package-summary.html b/static/javadocs/dev/plex/module/package-summary.html new file mode 100644 index 0000000..28e93c5 --- /dev/null +++ b/static/javadocs/dev/plex/module/package-summary.html @@ -0,0 +1,98 @@ + + + + +dev.plex.module (Plex 0.8 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Package dev.plex.module

    +
    +
    +
    package dev.plex.module
    +
    + +
    +
    +
    +
    + + diff --git a/static/javadocs/dev/plex/module/package-tree.html b/static/javadocs/dev/plex/module/package-tree.html new file mode 100644 index 0000000..1a352e7 --- /dev/null +++ b/static/javadocs/dev/plex/module/package-tree.html @@ -0,0 +1,72 @@ + + + + +dev.plex.module Class Hierarchy (Plex 0.8 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Hierarchy For Package dev.plex.module

    +Package Hierarchies: + +
    +
    +

    Class Hierarchy

    + +
    +
    +
    +
    + + diff --git a/static/javadocs/dev/plex/package-summary.html b/static/javadocs/dev/plex/package-summary.html index 97dbbf6..a73849e 100644 --- a/static/javadocs/dev/plex/package-summary.html +++ b/static/javadocs/dev/plex/package-summary.html @@ -2,7 +2,7 @@ -dev.plex (Plex 0.7 API) +dev.plex (Plex 0.8 API) @@ -83,20 +83,22 @@ loadScripts(document, 'script');
     
     
    - +
     
    - +
     
    - +
     
    - +
     
    - +
     
    - +
     
    - +
     
    + +
     
    diff --git a/static/javadocs/dev/plex/package-tree.html b/static/javadocs/dev/plex/package-tree.html index be1c7d0..3111cb0 100644 --- a/static/javadocs/dev/plex/package-tree.html +++ b/static/javadocs/dev/plex/package-tree.html @@ -2,7 +2,7 @@ -dev.plex Class Hierarchy (Plex 0.7 API) +dev.plex Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/player/PlexPlayer.html b/static/javadocs/dev/plex/player/PlexPlayer.html index 0121b20..211af2b 100644 --- a/static/javadocs/dev/plex/player/PlexPlayer.html +++ b/static/javadocs/dev/plex/player/PlexPlayer.html @@ -2,7 +2,7 @@ -PlexPlayer (Plex 0.7 API) +PlexPlayer (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/player/PunishedPlayer.html b/static/javadocs/dev/plex/player/PunishedPlayer.html index e4e375f..dbee5bb 100644 --- a/static/javadocs/dev/plex/player/PunishedPlayer.html +++ b/static/javadocs/dev/plex/player/PunishedPlayer.html @@ -2,7 +2,7 @@ -PunishedPlayer (Plex 0.7 API) +PunishedPlayer (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/player/package-summary.html b/static/javadocs/dev/plex/player/package-summary.html index 67e1852..d09e2e2 100644 --- a/static/javadocs/dev/plex/player/package-summary.html +++ b/static/javadocs/dev/plex/player/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.player (Plex 0.7 API) +dev.plex.player (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/player/package-tree.html b/static/javadocs/dev/plex/player/package-tree.html index cca4051..01a8fed 100644 --- a/static/javadocs/dev/plex/player/package-tree.html +++ b/static/javadocs/dev/plex/player/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.player Class Hierarchy (Plex 0.7 API) +dev.plex.player Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/punishment/Punishment.html b/static/javadocs/dev/plex/punishment/Punishment.html index 6b958f5..c760ee0 100644 --- a/static/javadocs/dev/plex/punishment/Punishment.html +++ b/static/javadocs/dev/plex/punishment/Punishment.html @@ -2,7 +2,7 @@ -Punishment (Plex 0.7 API) +Punishment (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/punishment/PunishmentManager.IndefiniteBan.html b/static/javadocs/dev/plex/punishment/PunishmentManager.IndefiniteBan.html new file mode 100644 index 0000000..d32ec95 --- /dev/null +++ b/static/javadocs/dev/plex/punishment/PunishmentManager.IndefiniteBan.html @@ -0,0 +1,177 @@ + + + + +PunishmentManager.IndefiniteBan (Plex 0.8 API) + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class PunishmentManager.IndefiniteBan

    +
    +
    java.lang.Object +
    dev.plex.punishment.PunishmentManager.IndefiniteBan
    +
    +
    +
    +
    Enclosing class:
    +
    PunishmentManager
    +
    +
    +
    public static class PunishmentManager.IndefiniteBan +extends Object
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Field Details

      +
        +
      • +
        +

        usernames

        +
        private final List<String> usernames
        +
        +
      • +
      • +
        +

        uuids

        +
        private final List<UUID> uuids
        +
        +
      • +
      • +
        +

        ips

        +
        private final List<String> ips
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        IndefiniteBan

        +
        public IndefiniteBan()
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + + diff --git a/static/javadocs/dev/plex/punishment/PunishmentManager.html b/static/javadocs/dev/plex/punishment/PunishmentManager.html index a4b291b..751417b 100644 --- a/static/javadocs/dev/plex/punishment/PunishmentManager.html +++ b/static/javadocs/dev/plex/punishment/PunishmentManager.html @@ -2,7 +2,7 @@ -PunishmentManager (Plex 0.7 API) +PunishmentManager (Plex 0.8 API) @@ -43,7 +43,7 @@ loadScripts(document, 'script');
    @@ -190,21 +199,9 @@ loadScripts(document, 'script');

    Field Details

    diff --git a/static/javadocs/dev/plex/punishment/PunishmentType.html b/static/javadocs/dev/plex/punishment/PunishmentType.html index 17d3eaa..1fa5e52 100644 --- a/static/javadocs/dev/plex/punishment/PunishmentType.html +++ b/static/javadocs/dev/plex/punishment/PunishmentType.html @@ -2,7 +2,7 @@ -PunishmentType (Plex 0.7 API) +PunishmentType (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/punishment/package-summary.html b/static/javadocs/dev/plex/punishment/package-summary.html index d002e3a..ae4034b 100644 --- a/static/javadocs/dev/plex/punishment/package-summary.html +++ b/static/javadocs/dev/plex/punishment/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.punishment (Plex 0.7 API) +dev.plex.punishment (Plex 0.8 API) @@ -87,8 +87,10 @@ loadScripts(document, 'script');
     
     
    - -
     
    + +
     
    + +
     
    diff --git a/static/javadocs/dev/plex/punishment/package-tree.html b/static/javadocs/dev/plex/punishment/package-tree.html index ee6acb1..a39c862 100644 --- a/static/javadocs/dev/plex/punishment/package-tree.html +++ b/static/javadocs/dev/plex/punishment/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.punishment Class Hierarchy (Plex 0.7 API) +dev.plex.punishment Class Hierarchy (Plex 0.8 API) @@ -64,6 +64,7 @@ loadScripts(document, 'script');
  • dev.plex.punishment.Punishment
  • +
  • dev.plex.punishment.PunishmentManager.IndefiniteBan
  • diff --git a/static/javadocs/dev/plex/rank/RankManager.html b/static/javadocs/dev/plex/rank/RankManager.html index aa99a0b..1c701d3 100644 --- a/static/javadocs/dev/plex/rank/RankManager.html +++ b/static/javadocs/dev/plex/rank/RankManager.html @@ -2,7 +2,7 @@ -RankManager (Plex 0.7 API) +RankManager (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/rank/enums/Rank.html b/static/javadocs/dev/plex/rank/enums/Rank.html index 5106685..83f7a92 100644 --- a/static/javadocs/dev/plex/rank/enums/Rank.html +++ b/static/javadocs/dev/plex/rank/enums/Rank.html @@ -2,7 +2,7 @@ -Rank (Plex 0.7 API) +Rank (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/rank/enums/Title.html b/static/javadocs/dev/plex/rank/enums/Title.html index 230fef4..83285d4 100644 --- a/static/javadocs/dev/plex/rank/enums/Title.html +++ b/static/javadocs/dev/plex/rank/enums/Title.html @@ -2,7 +2,7 @@ -Title (Plex 0.7 API) +Title (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/rank/enums/package-summary.html b/static/javadocs/dev/plex/rank/enums/package-summary.html index 6b4ae09..f881a61 100644 --- a/static/javadocs/dev/plex/rank/enums/package-summary.html +++ b/static/javadocs/dev/plex/rank/enums/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.rank.enums (Plex 0.7 API) +dev.plex.rank.enums (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/rank/enums/package-tree.html b/static/javadocs/dev/plex/rank/enums/package-tree.html index 3a3aebe..82c4185 100644 --- a/static/javadocs/dev/plex/rank/enums/package-tree.html +++ b/static/javadocs/dev/plex/rank/enums/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.rank.enums Class Hierarchy (Plex 0.7 API) +dev.plex.rank.enums Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/rank/package-summary.html b/static/javadocs/dev/plex/rank/package-summary.html index d59dbd9..d1c5094 100644 --- a/static/javadocs/dev/plex/rank/package-summary.html +++ b/static/javadocs/dev/plex/rank/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.rank (Plex 0.7 API) +dev.plex.rank (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/rank/package-tree.html b/static/javadocs/dev/plex/rank/package-tree.html index f16ec32..4e797eb 100644 --- a/static/javadocs/dev/plex/rank/package-tree.html +++ b/static/javadocs/dev/plex/rank/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.rank Class Hierarchy (Plex 0.7 API) +dev.plex.rank Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/services/AbstractService.html b/static/javadocs/dev/plex/services/AbstractService.html index 764cbef..38ea51f 100644 --- a/static/javadocs/dev/plex/services/AbstractService.html +++ b/static/javadocs/dev/plex/services/AbstractService.html @@ -2,7 +2,7 @@ -AbstractService (Plex 0.7 API) +AbstractService (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/services/IService.html b/static/javadocs/dev/plex/services/IService.html index 8d11c52..8e2628a 100644 --- a/static/javadocs/dev/plex/services/IService.html +++ b/static/javadocs/dev/plex/services/IService.html @@ -2,7 +2,7 @@ -IService (Plex 0.7 API) +IService (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/services/ServiceManager.html b/static/javadocs/dev/plex/services/ServiceManager.html index 2681baa..2381223 100644 --- a/static/javadocs/dev/plex/services/ServiceManager.html +++ b/static/javadocs/dev/plex/services/ServiceManager.html @@ -2,7 +2,7 @@ -ServiceManager (Plex 0.7 API) +ServiceManager (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/services/impl/BanService.html b/static/javadocs/dev/plex/services/impl/BanService.html index 88b2dcf..ec49c88 100644 --- a/static/javadocs/dev/plex/services/impl/BanService.html +++ b/static/javadocs/dev/plex/services/impl/BanService.html @@ -2,7 +2,7 @@ -BanService (Plex 0.7 API) +BanService (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/services/impl/GameRuleService.html b/static/javadocs/dev/plex/services/impl/GameRuleService.html index d2a62f9..508dc0e 100644 --- a/static/javadocs/dev/plex/services/impl/GameRuleService.html +++ b/static/javadocs/dev/plex/services/impl/GameRuleService.html @@ -2,7 +2,7 @@ -GameRuleService (Plex 0.7 API) +GameRuleService (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/services/impl/UpdateCheckerService.html b/static/javadocs/dev/plex/services/impl/UpdateCheckerService.html index a8355f0..1a6f8b4 100644 --- a/static/javadocs/dev/plex/services/impl/UpdateCheckerService.html +++ b/static/javadocs/dev/plex/services/impl/UpdateCheckerService.html @@ -2,7 +2,7 @@ -UpdateCheckerService (Plex 0.7 API) +UpdateCheckerService (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/services/impl/package-summary.html b/static/javadocs/dev/plex/services/impl/package-summary.html index 889bbd4..eef1ed5 100644 --- a/static/javadocs/dev/plex/services/impl/package-summary.html +++ b/static/javadocs/dev/plex/services/impl/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.services.impl (Plex 0.7 API) +dev.plex.services.impl (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/services/impl/package-tree.html b/static/javadocs/dev/plex/services/impl/package-tree.html index 3bc696c..b66ff32 100644 --- a/static/javadocs/dev/plex/services/impl/package-tree.html +++ b/static/javadocs/dev/plex/services/impl/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.services.impl Class Hierarchy (Plex 0.7 API) +dev.plex.services.impl Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/services/package-summary.html b/static/javadocs/dev/plex/services/package-summary.html index f86b4d8..f824687 100644 --- a/static/javadocs/dev/plex/services/package-summary.html +++ b/static/javadocs/dev/plex/services/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.services (Plex 0.7 API) +dev.plex.services (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/services/package-tree.html b/static/javadocs/dev/plex/services/package-tree.html index 5a59fad..625c106 100644 --- a/static/javadocs/dev/plex/services/package-tree.html +++ b/static/javadocs/dev/plex/services/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.services Class Hierarchy (Plex 0.7 API) +dev.plex.services Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/storage/MongoConnection.html b/static/javadocs/dev/plex/storage/MongoConnection.html index 6a0b1ca..428edc2 100644 --- a/static/javadocs/dev/plex/storage/MongoConnection.html +++ b/static/javadocs/dev/plex/storage/MongoConnection.html @@ -2,7 +2,7 @@ -MongoConnection (Plex 0.7 API) +MongoConnection (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/storage/RedisConnection.html b/static/javadocs/dev/plex/storage/RedisConnection.html index cce2627..bbbe3c1 100644 --- a/static/javadocs/dev/plex/storage/RedisConnection.html +++ b/static/javadocs/dev/plex/storage/RedisConnection.html @@ -2,7 +2,7 @@ -RedisConnection (Plex 0.7 API) +RedisConnection (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/storage/SQLConnection.html b/static/javadocs/dev/plex/storage/SQLConnection.html index 8b655c3..aba7703 100644 --- a/static/javadocs/dev/plex/storage/SQLConnection.html +++ b/static/javadocs/dev/plex/storage/SQLConnection.html @@ -2,7 +2,7 @@ -SQLConnection (Plex 0.7 API) +SQLConnection (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/storage/StorageType.html b/static/javadocs/dev/plex/storage/StorageType.html index 8168151..19e8744 100644 --- a/static/javadocs/dev/plex/storage/StorageType.html +++ b/static/javadocs/dev/plex/storage/StorageType.html @@ -2,7 +2,7 @@ -StorageType (Plex 0.7 API) +StorageType (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/storage/package-summary.html b/static/javadocs/dev/plex/storage/package-summary.html index 2f14783..a2f1407 100644 --- a/static/javadocs/dev/plex/storage/package-summary.html +++ b/static/javadocs/dev/plex/storage/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.storage (Plex 0.7 API) +dev.plex.storage (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/storage/package-tree.html b/static/javadocs/dev/plex/storage/package-tree.html index cfa2a48..c7cac7c 100644 --- a/static/javadocs/dev/plex/storage/package-tree.html +++ b/static/javadocs/dev/plex/storage/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.storage Class Hierarchy (Plex 0.7 API) +dev.plex.storage Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/AshconInfo.SkinData.html b/static/javadocs/dev/plex/util/AshconInfo.SkinData.html index 8182ac8..ee88475 100644 --- a/static/javadocs/dev/plex/util/AshconInfo.SkinData.html +++ b/static/javadocs/dev/plex/util/AshconInfo.SkinData.html @@ -2,7 +2,7 @@ -AshconInfo.SkinData (Plex 0.7 API) +AshconInfo.SkinData (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/AshconInfo.Textures.html b/static/javadocs/dev/plex/util/AshconInfo.Textures.html index 3b68ba5..5ee912b 100644 --- a/static/javadocs/dev/plex/util/AshconInfo.Textures.html +++ b/static/javadocs/dev/plex/util/AshconInfo.Textures.html @@ -2,7 +2,7 @@ -AshconInfo.Textures (Plex 0.7 API) +AshconInfo.Textures (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/AshconInfo.UsernameHistory.html b/static/javadocs/dev/plex/util/AshconInfo.UsernameHistory.html index f6c43f3..06eea2e 100644 --- a/static/javadocs/dev/plex/util/AshconInfo.UsernameHistory.html +++ b/static/javadocs/dev/plex/util/AshconInfo.UsernameHistory.html @@ -2,7 +2,7 @@ -AshconInfo.UsernameHistory (Plex 0.7 API) +AshconInfo.UsernameHistory (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/AshconInfo.html b/static/javadocs/dev/plex/util/AshconInfo.html index d604597..4bd31fa 100644 --- a/static/javadocs/dev/plex/util/AshconInfo.html +++ b/static/javadocs/dev/plex/util/AshconInfo.html @@ -2,7 +2,7 @@ -AshconInfo (Plex 0.7 API) +AshconInfo (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/MojangUtils.html b/static/javadocs/dev/plex/util/MojangUtils.html index bbac028..6380baa 100644 --- a/static/javadocs/dev/plex/util/MojangUtils.html +++ b/static/javadocs/dev/plex/util/MojangUtils.html @@ -2,7 +2,7 @@ -MojangUtils (Plex 0.7 API) +MojangUtils (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/PlexLog.html b/static/javadocs/dev/plex/util/PlexLog.html index 1a12bd1..30dbcd4 100644 --- a/static/javadocs/dev/plex/util/PlexLog.html +++ b/static/javadocs/dev/plex/util/PlexLog.html @@ -2,7 +2,7 @@ -PlexLog (Plex 0.7 API) +PlexLog (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/PlexUtils.html b/static/javadocs/dev/plex/util/PlexUtils.html index f621ca5..590d215 100644 --- a/static/javadocs/dev/plex/util/PlexUtils.html +++ b/static/javadocs/dev/plex/util/PlexUtils.html @@ -2,7 +2,7 @@ -PlexUtils (Plex 0.7 API) +PlexUtils (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/TimeUnit.html b/static/javadocs/dev/plex/util/TimeUnit.html index 8a7863e..6f2cafc 100644 --- a/static/javadocs/dev/plex/util/TimeUnit.html +++ b/static/javadocs/dev/plex/util/TimeUnit.html @@ -2,7 +2,7 @@ -TimeUnit (Plex 0.7 API) +TimeUnit (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/UpdateChecker.html b/static/javadocs/dev/plex/util/UpdateChecker.html index 640545f..aca400b 100644 --- a/static/javadocs/dev/plex/util/UpdateChecker.html +++ b/static/javadocs/dev/plex/util/UpdateChecker.html @@ -2,7 +2,7 @@ -UpdateChecker (Plex 0.7 API) +UpdateChecker (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/adapter/LocalDateTimeDeserializer.html b/static/javadocs/dev/plex/util/adapter/LocalDateTimeDeserializer.html index b4369d9..9e048d7 100644 --- a/static/javadocs/dev/plex/util/adapter/LocalDateTimeDeserializer.html +++ b/static/javadocs/dev/plex/util/adapter/LocalDateTimeDeserializer.html @@ -2,7 +2,7 @@ -LocalDateTimeDeserializer (Plex 0.7 API) +LocalDateTimeDeserializer (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/adapter/LocalDateTimeSerializer.html b/static/javadocs/dev/plex/util/adapter/LocalDateTimeSerializer.html index f9cb527..9f5c652 100644 --- a/static/javadocs/dev/plex/util/adapter/LocalDateTimeSerializer.html +++ b/static/javadocs/dev/plex/util/adapter/LocalDateTimeSerializer.html @@ -2,7 +2,7 @@ -LocalDateTimeSerializer (Plex 0.7 API) +LocalDateTimeSerializer (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/adapter/package-summary.html b/static/javadocs/dev/plex/util/adapter/package-summary.html index a1c8490..cfdd954 100644 --- a/static/javadocs/dev/plex/util/adapter/package-summary.html +++ b/static/javadocs/dev/plex/util/adapter/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.util.adapter (Plex 0.7 API) +dev.plex.util.adapter (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/adapter/package-tree.html b/static/javadocs/dev/plex/util/adapter/package-tree.html index 84e0e6b..506d163 100644 --- a/static/javadocs/dev/plex/util/adapter/package-tree.html +++ b/static/javadocs/dev/plex/util/adapter/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.util.adapter Class Hierarchy (Plex 0.7 API) +dev.plex.util.adapter Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/menu/AbstractMenu.html b/static/javadocs/dev/plex/util/menu/AbstractMenu.html index 24910e2..d96136a 100644 --- a/static/javadocs/dev/plex/util/menu/AbstractMenu.html +++ b/static/javadocs/dev/plex/util/menu/AbstractMenu.html @@ -2,7 +2,7 @@ -AbstractMenu (Plex 0.7 API) +AbstractMenu (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/menu/IMenu.html b/static/javadocs/dev/plex/util/menu/IMenu.html index 7f4379b..9a392fc 100644 --- a/static/javadocs/dev/plex/util/menu/IMenu.html +++ b/static/javadocs/dev/plex/util/menu/IMenu.html @@ -2,7 +2,7 @@ -IMenu (Plex 0.7 API) +IMenu (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/menu/package-summary.html b/static/javadocs/dev/plex/util/menu/package-summary.html index 7ba505a..56a53c5 100644 --- a/static/javadocs/dev/plex/util/menu/package-summary.html +++ b/static/javadocs/dev/plex/util/menu/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.util.menu (Plex 0.7 API) +dev.plex.util.menu (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/menu/package-tree.html b/static/javadocs/dev/plex/util/menu/package-tree.html index b0abecd..ff4582d 100644 --- a/static/javadocs/dev/plex/util/menu/package-tree.html +++ b/static/javadocs/dev/plex/util/menu/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.util.menu Class Hierarchy (Plex 0.7 API) +dev.plex.util.menu Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/package-summary.html b/static/javadocs/dev/plex/util/package-summary.html index 9e705e8..3bba334 100644 --- a/static/javadocs/dev/plex/util/package-summary.html +++ b/static/javadocs/dev/plex/util/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.util (Plex 0.7 API) +dev.plex.util (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/util/package-tree.html b/static/javadocs/dev/plex/util/package-tree.html index 9212f4f..5cc746d 100644 --- a/static/javadocs/dev/plex/util/package-tree.html +++ b/static/javadocs/dev/plex/util/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.util Class Hierarchy (Plex 0.7 API) +dev.plex.util Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/world/BlockMapChunkGenerator.html b/static/javadocs/dev/plex/world/BlockMapChunkGenerator.html index e5c3cc3..ca48c35 100644 --- a/static/javadocs/dev/plex/world/BlockMapChunkGenerator.html +++ b/static/javadocs/dev/plex/world/BlockMapChunkGenerator.html @@ -2,7 +2,7 @@ -BlockMapChunkGenerator (Plex 0.7 API) +BlockMapChunkGenerator (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/world/ConfigurationChunkGenerator.html b/static/javadocs/dev/plex/world/ConfigurationChunkGenerator.html index fc7b30a..8c14509 100644 --- a/static/javadocs/dev/plex/world/ConfigurationChunkGenerator.html +++ b/static/javadocs/dev/plex/world/ConfigurationChunkGenerator.html @@ -2,7 +2,7 @@ -ConfigurationChunkGenerator (Plex 0.7 API) +ConfigurationChunkGenerator (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/world/CustomChunkGenerator.html b/static/javadocs/dev/plex/world/CustomChunkGenerator.html index 19cb9c6..21f2995 100644 --- a/static/javadocs/dev/plex/world/CustomChunkGenerator.html +++ b/static/javadocs/dev/plex/world/CustomChunkGenerator.html @@ -2,7 +2,7 @@ -CustomChunkGenerator (Plex 0.7 API) +CustomChunkGenerator (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/world/CustomWorld.html b/static/javadocs/dev/plex/world/CustomWorld.html index 1625975..d8764ba 100644 --- a/static/javadocs/dev/plex/world/CustomWorld.html +++ b/static/javadocs/dev/plex/world/CustomWorld.html @@ -2,7 +2,7 @@ -CustomWorld (Plex 0.7 API) +CustomWorld (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/world/FlatChunkGenerator.html b/static/javadocs/dev/plex/world/FlatChunkGenerator.html index ee39c99..41c203b 100644 --- a/static/javadocs/dev/plex/world/FlatChunkGenerator.html +++ b/static/javadocs/dev/plex/world/FlatChunkGenerator.html @@ -2,7 +2,7 @@ -FlatChunkGenerator (Plex 0.7 API) +FlatChunkGenerator (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/world/NoiseChunkGenerator.html b/static/javadocs/dev/plex/world/NoiseChunkGenerator.html index 85ae1f4..59bde99 100644 --- a/static/javadocs/dev/plex/world/NoiseChunkGenerator.html +++ b/static/javadocs/dev/plex/world/NoiseChunkGenerator.html @@ -2,7 +2,7 @@ -NoiseChunkGenerator (Plex 0.7 API) +NoiseChunkGenerator (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/world/NoiseOptions.html b/static/javadocs/dev/plex/world/NoiseOptions.html index 96dfe23..6ac6cea 100644 --- a/static/javadocs/dev/plex/world/NoiseOptions.html +++ b/static/javadocs/dev/plex/world/NoiseOptions.html @@ -2,7 +2,7 @@ -NoiseOptions (Plex 0.7 API) +NoiseOptions (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/world/OctaveChunkGenerator.html b/static/javadocs/dev/plex/world/OctaveChunkGenerator.html index 71adc91..42dc8e6 100644 --- a/static/javadocs/dev/plex/world/OctaveChunkGenerator.html +++ b/static/javadocs/dev/plex/world/OctaveChunkGenerator.html @@ -2,7 +2,7 @@ -OctaveChunkGenerator (Plex 0.7 API) +OctaveChunkGenerator (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/world/OctaveOptions.html b/static/javadocs/dev/plex/world/OctaveOptions.html index e2bff1d..559f5c0 100644 --- a/static/javadocs/dev/plex/world/OctaveOptions.html +++ b/static/javadocs/dev/plex/world/OctaveOptions.html @@ -2,7 +2,7 @@ -OctaveOptions (Plex 0.7 API) +OctaveOptions (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/world/package-summary.html b/static/javadocs/dev/plex/world/package-summary.html index 8f90fe7..ff47728 100644 --- a/static/javadocs/dev/plex/world/package-summary.html +++ b/static/javadocs/dev/plex/world/package-summary.html @@ -2,7 +2,7 @@ -dev.plex.world (Plex 0.7 API) +dev.plex.world (Plex 0.8 API) diff --git a/static/javadocs/dev/plex/world/package-tree.html b/static/javadocs/dev/plex/world/package-tree.html index f6d6912..563a4ae 100644 --- a/static/javadocs/dev/plex/world/package-tree.html +++ b/static/javadocs/dev/plex/world/package-tree.html @@ -2,7 +2,7 @@ -dev.plex.world Class Hierarchy (Plex 0.7 API) +dev.plex.world Class Hierarchy (Plex 0.8 API) diff --git a/static/javadocs/element-list b/static/javadocs/element-list index 0020e36..7e93d99 100644 --- a/static/javadocs/element-list +++ b/static/javadocs/element-list @@ -12,6 +12,8 @@ dev.plex.handlers dev.plex.listener dev.plex.listener.impl dev.plex.menu +dev.plex.module +dev.plex.module.exception dev.plex.player dev.plex.punishment dev.plex.rank diff --git a/static/javadocs/help-doc.html b/static/javadocs/help-doc.html index ec9f723..9325ae9 100644 --- a/static/javadocs/help-doc.html +++ b/static/javadocs/help-doc.html @@ -2,7 +2,7 @@ -API Help (Plex 0.7 API) +API Help (Plex 0.8 API) diff --git a/static/javadocs/index-all.html b/static/javadocs/index-all.html index 1d4090b..b3d90d6 100644 --- a/static/javadocs/index-all.html +++ b/static/javadocs/index-all.html @@ -2,7 +2,7 @@ -Index (Plex 0.7 API) +Index (Plex 0.8 API) @@ -78,7 +78,7 @@ loadScripts(document, 'script');
    Admin(UUID) - Constructor for class dev.plex.admin.Admin
    -
    Creates an admin with the startig ADMIN rank
    +
    Creates an admin with the ADMIN rank as the default rank
    ADMIN - Enum constant in enum class dev.plex.rank.enums.Rank
     
    @@ -88,6 +88,12 @@ loadScripts(document, 'script');
    AdminAddEvent() - Constructor for class dev.plex.event.AdminAddEvent
     
    +
    adminChat - Variable in class dev.plex.admin.Admin
    +
    +
    Returns if the admin has admin chat toggled or not +
    + Contains a #isAdminChat and #setAdminChat by Lombok
    +
    adminChat(CommandSender, String) - Static method in class dev.plex.listener.impl.ChatListener
     
    AdminChatCMD - Class in dev.plex.command.impl
    @@ -167,12 +173,6 @@ loadScripts(document, 'script');
     
    BanListener() - Constructor for class dev.plex.listener.impl.BanListener
     
    -
    bannedIPs - Variable in class dev.plex.punishment.PunishmentManager
    -
     
    -
    bannedUsernames - Variable in class dev.plex.punishment.PunishmentManager
    -
     
    -
    bannedUUIDs - Variable in class dev.plex.punishment.PunishmentManager
    -
     
    BanService - Class in dev.plex.services.impl
     
    BanService() - Constructor for class dev.plex.services.impl.BanService
    @@ -254,6 +254,8 @@ loadScripts(document, 'script');
    Storage for the command's permissions
    +
    commands - Variable in class dev.plex.module.PlexModule
    +
     
    commandSource - Variable in class dev.plex.command.PlexCommand
    Required command source fetched from the permissions
    @@ -262,7 +264,7 @@ loadScripts(document, 'script');
    Returns if the admin has command spy or not
    - Contains a #isCommandSpy and #setCommandSpy by lombok
    + Contains a #isCommandSpy and #setCommandSpy by Lombok
    commandSpy - Variable in class dev.plex.player.PlexPlayer
     
    @@ -337,6 +339,8 @@ loadScripts(document, 'script');

    D

    +
    dataFolder - Variable in class dev.plex.module.PlexModule
    +
     
    datastore - Variable in class dev.plex.cache.MongoPlayerData
    The datastore object / database
    @@ -369,6 +373,8 @@ loadScripts(document, 'script');
     
    DeopCMD() - Constructor for class dev.plex.command.impl.DeopCMD
     
    +
    description - Variable in class dev.plex.module.PlexModuleFile
    +
     
    description() - Element in annotation interface dev.plex.command.annotation.CommandParameters
    The description
    @@ -405,6 +411,10 @@ loadScripts(document, 'script');
     
    dev.plex.menu - package dev.plex.menu
     
    +
    dev.plex.module - package dev.plex.module
    +
     
    +
    dev.plex.module.exception - package dev.plex.module.exception
    +
     
    dev.plex.player - package dev.plex.player
     
    dev.plex.punishment - package dev.plex.punishment
    @@ -429,6 +439,10 @@ loadScripts(document, 'script');
     
    DEVELOPERS - Static variable in class dev.plex.util.PlexUtils
     
    +
    disable() - Method in class dev.plex.module.PlexModule
    +
     
    +
    disableModules() - Method in class dev.plex.module.ModuleManager
    +
     
    displayName() - Method in class dev.plex.player.PlexPlayer
     
    doPunishment(PunishedPlayer, Punishment) - Method in class dev.plex.punishment.PunishmentManager
    @@ -436,6 +450,10 @@ loadScripts(document, 'script');

    E

    +
    enable() - Method in class dev.plex.module.PlexModule
    +
     
    +
    enableModules() - Method in class dev.plex.module.ModuleManager
    +
     
    endDate - Variable in class dev.plex.punishment.Punishment
     
    error(String, Object...) - Static method in class dev.plex.util.PlexLog
    @@ -612,6 +630,8 @@ loadScripts(document, 'script');
    getChatColorFromConfig(Config, ChatColor, String) - Static method in class dev.plex.util.PlexUtils
     
    +
    getCommand(String) - Method in class dev.plex.module.PlexModule
    +
     
    getCon() - Method in class dev.plex.storage.SQLConnection
     
    getCurrentInventoryIndex(Inventory) - Method in class dev.plex.menu.PunishedPlayerMenu
    @@ -770,6 +790,10 @@ loadScripts(document, 'script');
     
    indefBans - Variable in class dev.plex.Plex
     
    +
    IndefiniteBan() - Constructor for class dev.plex.punishment.PunishmentManager.IndefiniteBan
    +
     
    +
    indefiniteBans - Variable in class dev.plex.punishment.PunishmentManager
    +
     
    insert(PlexPlayer) - Static method in class dev.plex.cache.DataUtils
    Inserts a player's information in the database
    @@ -788,6 +812,8 @@ loadScripts(document, 'script');
     
    ips - Variable in class dev.plex.player.PlexPlayer
     
    +
    ips - Variable in class dev.plex.punishment.PunishmentManager.IndefiniteBan
    +
     
    IPS - Variable in class dev.plex.punishment.Punishment
     
    isAdmin(PlexPlayer) - Method in class dev.plex.command.PlexCommand
    @@ -883,10 +909,20 @@ loadScripts(document, 'script');
     
    ListenerHandler() - Constructor for class dev.plex.handlers.ListenerHandler
     
    +
    listeners - Variable in class dev.plex.module.PlexModule
    +
     
    load() - Method in class dev.plex.config.Config
    +
     
    +
    load() - Method in class dev.plex.module.PlexModule
    +
     
    +
    load(boolean) - Method in class dev.plex.config.Config
    Loads the configuration file
    +
    loadAllModules() - Method in class dev.plex.module.ModuleManager
    +
     
    +
    loadModules() - Method in class dev.plex.module.ModuleManager
    +
     
    localDateTime - Variable in class dev.plex.util.AshconInfo.UsernameHistory
     
    LocalDateTimeDeserializer - Class in dev.plex.util.adapter
    @@ -913,6 +949,8 @@ loadScripts(document, 'script');
     
    log(String, Object...) - Static method in class dev.plex.util.PlexLog
     
    +
    logger - Variable in class dev.plex.module.PlexModule
    +
     
    loginMessage - Variable in class dev.plex.player.PlexPlayer
     
    loginMessage - Variable in enum class dev.plex.rank.enums.Rank
    @@ -922,6 +960,8 @@ loadScripts(document, 'script');

    M

    +
    main - Variable in class dev.plex.module.PlexModuleFile
    +
     
    MARIADB - Enum constant in enum class dev.plex.storage.StorageType
     
    MASTER_BUILDER - Enum constant in enum class dev.plex.rank.enums.Title
    @@ -958,6 +998,20 @@ loadScripts(document, 'script');
    Converts a string to a mini message kyori component
    +
    ModuleLoadException - Exception in dev.plex.module.exception
    +
     
    +
    ModuleLoadException(String) - Constructor for exception dev.plex.module.exception.ModuleLoadException
    +
     
    +
    moduleManager - Variable in class dev.plex.Plex
    +
     
    +
    ModuleManager - Class in dev.plex.module
    +
     
    +
    ModuleManager() - Constructor for class dev.plex.module.ModuleManager
    +
     
    +
    modules - Variable in class dev.plex.module.ModuleManager
    +
     
    +
    modulesFolder - Variable in class dev.plex.Plex
    +
     
    MojangUtils - Class in dev.plex.util
     
    MojangUtils() - Constructor for class dev.plex.util.MojangUtils
    @@ -1003,6 +1057,8 @@ loadScripts(document, 'script');
    The file name
    +
    name - Variable in class dev.plex.module.PlexModuleFile
    +
     
    name - Variable in class dev.plex.player.PlexPlayer
     
    name - Variable in class dev.plex.util.menu.AbstractMenu
    @@ -1149,6 +1205,8 @@ loadScripts(document, 'script');
     
    PlayerNotFoundException() - Constructor for exception dev.plex.command.exception.PlayerNotFoundException
     
    +
    plex - Variable in class dev.plex.module.PlexModule
    +
     
    Plex - Class in dev.plex
     
    Plex() - Constructor for class dev.plex.Plex
    @@ -1179,6 +1237,16 @@ loadScripts(document, 'script');
     
    PlexLog() - Constructor for class dev.plex.util.PlexLog
     
    +
    PlexModule - Class in dev.plex.module
    +
     
    +
    PlexModule() - Constructor for class dev.plex.module.PlexModule
    +
     
    +
    plexModuleFile - Variable in class dev.plex.module.PlexModule
    +
     
    +
    PlexModuleFile - Class in dev.plex.module
    +
     
    +
    PlexModuleFile() - Constructor for class dev.plex.module.PlexModuleFile
    +
     
    plexPlayer - Variable in class dev.plex.event.AdminAddEvent
    The PlexPlayer that was added
    @@ -1297,6 +1365,8 @@ loadScripts(document, 'script');
     
    PunishmentManager() - Constructor for class dev.plex.punishment.PunishmentManager
     
    +
    PunishmentManager.IndefiniteBan - Class in dev.plex.punishment
    +
     
    PunishmentMenu - Class in dev.plex.menu
     
    PunishmentMenu() - Constructor for class dev.plex.menu.PunishmentMenu
    @@ -1368,6 +1438,10 @@ loadScripts(document, 'script');
     
    RedisConnection() - Constructor for class dev.plex.storage.RedisConnection
     
    +
    registerCommand(PlexCommand) - Method in class dev.plex.module.PlexModule
    +
     
    +
    registerListener(PlexListener) - Method in class dev.plex.module.PlexModule
    +
     
    registerService(AbstractService) - Method in class dev.plex.services.ServiceManager
     
    regxList - Static variable in class dev.plex.util.PlexUtils
    @@ -1509,12 +1583,6 @@ loadScripts(document, 'script');
    SQLPlayerData() - Constructor for class dev.plex.cache.SQLPlayerData
     
    -
    staffChat - Variable in class dev.plex.admin.Admin
    -
    -
    Returns if the admin has staff chat toggled or not -
    - Contains a #isStaffChat and #setStaffChat by lombok
    -
    startServices() - Method in class dev.plex.services.ServiceManager
     
    storageType - Variable in class dev.plex.Plex
    @@ -1619,10 +1687,16 @@ loadScripts(document, 'script');
     
    UnfreezeCMD() - Constructor for class dev.plex.command.impl.UnfreezeCMD
     
    +
    unloadModules() - Method in class dev.plex.module.ModuleManager
    +
     
    UnmuteCMD - Class in dev.plex.command.impl
     
    UnmuteCMD() - Constructor for class dev.plex.command.impl.UnmuteCMD
     
    +
    unregisterCommand(PlexCommand) - Method in class dev.plex.module.PlexModule
    +
     
    +
    unregisterListener(PlexListener) - Method in class dev.plex.module.PlexModule
    +
     
    update(PlexPlayer) - Static method in class dev.plex.cache.DataUtils
    Updates a player's information in the database
    @@ -1667,6 +1741,8 @@ loadScripts(document, 'script');
     
    UsernameHistory() - Constructor for class dev.plex.util.AshconInfo.UsernameHistory
     
    +
    usernames - Variable in class dev.plex.punishment.PunishmentManager.IndefiniteBan
    +
     
    uuid - Variable in class dev.plex.admin.Admin
    Gets the unique ID of an admin (immutable)
    @@ -1677,6 +1753,8 @@ loadScripts(document, 'script');
     
    uuid - Variable in class dev.plex.util.AshconInfo
     
    +
    uuids - Variable in class dev.plex.punishment.PunishmentManager.IndefiniteBan
    +
     

    V

    @@ -1740,6 +1818,8 @@ the order they are declared.
     
    verify(String) - Static method in class dev.plex.util.PlexUtils
     
    +
    version - Variable in class dev.plex.module.PlexModuleFile
    +
     

    W

    diff --git a/static/javadocs/index.html b/static/javadocs/index.html index b91c661..bd565ce 100644 --- a/static/javadocs/index.html +++ b/static/javadocs/index.html @@ -2,7 +2,7 @@ -Overview (Plex 0.7 API) +Overview (Plex 0.8 API) @@ -47,7 +47,7 @@ loadScripts(document, 'script');
    -

    Plex 0.7 API

    +

    Plex 0.8 API

    Packages
    @@ -82,6 +82,10 @@ loadScripts(document, 'script');
     
     
    + +
     
    + +
     
     
    diff --git a/static/javadocs/member-search-index.js b/static/javadocs/member-search-index.js index 3e4a444..3358df1 100644 --- a/static/javadocs/member-search-index.js +++ b/static/javadocs/member-search-index.js @@ -1 +1 @@ -memberSearchIndex = [{"p":"dev.plex.util","c":"PlexUtils","l":"a(String)","u":"a(java.lang.String)"},{"p":"dev.plex.util.menu","c":"AbstractMenu","l":"AbstractMenu(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"dev.plex.services","c":"AbstractService","l":"AbstractService(boolean, boolean)","u":"%3Cinit%3E(boolean,boolean)"},{"p":"dev.plex.punishment","c":"Punishment","l":"active"},{"p":"dev.plex.config","c":"Config","l":"added"},{"p":"dev.plex.admin","c":"AdminList","l":"addToCache(Admin)","u":"addToCache(dev.plex.admin.Admin)"},{"p":"dev.plex.rank.enums","c":"Rank","l":"ADMIN"},{"p":"dev.plex.admin","c":"Admin","l":"Admin(UUID)","u":"%3Cinit%3E(java.util.UUID)"},{"p":"dev.plex.event","c":"AdminAddEvent","l":"AdminAddEvent()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"ChatListener","l":"adminChat(CommandSender, String)","u":"adminChat(org.bukkit.command.CommandSender,java.lang.String)"},{"p":"dev.plex.command.impl","c":"AdminChatCMD","l":"AdminChatCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"AdminCMD","l":"AdminCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex","c":"Plex","l":"adminList"},{"p":"dev.plex.admin","c":"AdminList","l":"AdminList()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"AdminListener","l":"AdminListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.event","c":"AdminRemoveEvent","l":"AdminRemoveEvent()","u":"%3Cinit%3E()"},{"p":"dev.plex.admin","c":"AdminList","l":"admins"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"AdminSetRankEvent()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"AdminworldCMD","l":"AdminworldCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"AdventureCMD","l":"AdventureCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.annotation","c":"CommandParameters","l":"aliases()"},{"p":"dev.plex.world","c":"NoiseOptions","l":"amplitude"},{"p":"dev.plex.command.source","c":"RequiredCommandSource","l":"ANY"},{"p":"dev.plex.util","c":"AshconInfo","l":"AshconInfo()","u":"%3Cinit%3E()"},{"p":"dev.plex.services","c":"AbstractService","l":"asynchronous"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"BAN"},{"p":"dev.plex.command.impl","c":"BanCMD","l":"BanCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"BanListener","l":"BanListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"bannedIPs"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"bannedUsernames"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"bannedUUIDs"},{"p":"dev.plex.services.impl","c":"BanService","l":"BanService()","u":"%3Cinit%3E()"},{"p":"dev.plex.punishment","c":"Punishment","l":"banUrl"},{"p":"dev.plex.world","c":"BlockMapChunkGenerator","l":"blockMap"},{"p":"dev.plex.world","c":"BlockMapChunkGenerator","l":"BlockMapChunkGenerator(LinkedHashMap, BlockPopulator...)","u":"%3Cinit%3E(java.util.LinkedHashMap,org.bukkit.generator.BlockPopulator...)"},{"p":"dev.plex.util","c":"PlexUtils","l":"broadcast(Component)","u":"broadcast(net.kyori.adventure.text.Component)"},{"p":"dev.plex.util","c":"PlexUtils","l":"broadcast(String)","u":"broadcast(java.lang.String)"},{"p":"dev.plex.event","c":"PunishedPlayerEvent","l":"cancelled"},{"p":"dev.plex.util","c":"PlexUtils","l":"CHAT_COLOR_NAMES"},{"p":"dev.plex.util","c":"PlexUtils","l":"CHAT_COLOR_POOL"},{"p":"dev.plex.listener.impl","c":"ChatListener","l":"ChatListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"UpdateChecker","l":"check()"},{"p":"dev.plex.util","c":"PlexUtils","l":"check(T)"},{"p":"dev.plex.listener.impl","c":"WorldListener","l":"checkLevel(PlexPlayer, String[])","u":"checkLevel(dev.plex.player.PlexPlayer,java.lang.String[])"},{"p":"dev.plex.command","c":"PlexCommand","l":"checkRank(CommandSender, Rank, String)","u":"checkRank(org.bukkit.command.CommandSender,dev.plex.rank.enums.Rank,java.lang.String)"},{"p":"dev.plex.command","c":"PlexCommand","l":"checkRank(Player, Rank, String)","u":"checkRank(org.bukkit.entity.Player,dev.plex.rank.enums.Rank,java.lang.String)"},{"p":"dev.plex.command","c":"PlexCommand","l":"checkTab(CommandSender, Rank, String)","u":"checkTab(org.bukkit.command.CommandSender,dev.plex.rank.enums.Rank,java.lang.String)"},{"p":"dev.plex.command","c":"PlexCommand","l":"checkTab(Player, Rank, String)","u":"checkTab(org.bukkit.entity.Player,dev.plex.rank.enums.Rank,java.lang.String)"},{"p":"dev.plex.world","c":"CustomWorld","l":"chunks"},{"p":"dev.plex.player","c":"PlexPlayer","l":"coins"},{"p":"dev.plex.util","c":"PlexUtils","l":"colorize(String)","u":"colorize(java.lang.String)"},{"p":"dev.plex.command.exception","c":"CommandFailException","l":"CommandFailException(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"dev.plex.handlers","c":"CommandHandler","l":"CommandHandler()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"CommandListener","l":"CommandListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.command","c":"PlexCommand","l":"commandSource"},{"p":"dev.plex.admin","c":"Admin","l":"commandSpy"},{"p":"dev.plex.player","c":"PlexPlayer","l":"commandSpy"},{"p":"dev.plex.command.impl","c":"CommandSpyCMD","l":"CommandSpyCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"PlexUtils","l":"commitGameRules(World)","u":"commitGameRules(org.bukkit.World)"},{"p":"dev.plex.command","c":"PlexCommand","l":"componentFromString(String)","u":"componentFromString(java.lang.String)"},{"p":"dev.plex","c":"Plex","l":"config"},{"p":"dev.plex.config","c":"Config","l":"Config(Plex, String)","u":"%3Cinit%3E(dev.plex.Plex,java.lang.String)"},{"p":"dev.plex.world","c":"ConfigurationChunkGenerator","l":"ConfigurationChunkGenerator(String, BlockPopulator...)","u":"%3Cinit%3E(java.lang.String,org.bukkit.generator.BlockPopulator...)"},{"p":"dev.plex.storage","c":"SQLConnection","l":"connection"},{"p":"dev.plex.command.source","c":"RequiredCommandSource","l":"CONSOLE"},{"p":"dev.plex.command.exception","c":"ConsoleMustDefinePlayerException","l":"ConsoleMustDefinePlayerException()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.exception","c":"ConsoleOnlyException","l":"ConsoleOnlyException()","u":"%3Cinit%3E()"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"convertPunishments()"},{"p":"dev.plex.world","c":"ConfigurationChunkGenerator","l":"createBlockMap(String)","u":"createBlockMap(java.lang.String)"},{"p":"dev.plex.world","c":"BlockMapChunkGenerator","l":"createLoopChunkData(int, int, int, ChunkGenerator.ChunkData)","u":"createLoopChunkData(int,int,int,org.bukkit.generator.ChunkGenerator.ChunkData)"},{"p":"dev.plex.world","c":"CustomChunkGenerator","l":"createLoopChunkData(int, int, int, ChunkGenerator.ChunkData)","u":"createLoopChunkData(int,int,int,org.bukkit.generator.ChunkGenerator.ChunkData)"},{"p":"dev.plex.world","c":"FlatChunkGenerator","l":"createLoopChunkData(int, int, int, ChunkGenerator.ChunkData)","u":"createLoopChunkData(int,int,int,org.bukkit.generator.ChunkGenerator.ChunkData)"},{"p":"dev.plex.world","c":"NoiseChunkGenerator","l":"createLoopChunkData(int, int, int, ChunkGenerator.ChunkData)","u":"createLoopChunkData(int,int,int,org.bukkit.generator.ChunkGenerator.ChunkData)"},{"p":"dev.plex.world","c":"OctaveChunkGenerator","l":"createLoopChunkData(int, int, int, ChunkGenerator.ChunkData)","u":"createLoopChunkData(int,int,int,org.bukkit.generator.ChunkGenerator.ChunkData)"},{"p":"dev.plex.command.impl","c":"CreativeCMD","l":"CreativeCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"UpdateChecker","l":"currentVersion"},{"p":"dev.plex.util","c":"AshconInfo.Textures","l":"custom"},{"p":"dev.plex.world","c":"CustomChunkGenerator","l":"CustomChunkGenerator(int, BlockPopulator...)","u":"%3Cinit%3E(int,org.bukkit.generator.BlockPopulator...)"},{"p":"dev.plex.punishment","c":"Punishment","l":"customTime"},{"p":"dev.plex.world","c":"CustomWorld","l":"CustomWorld(String, CustomChunkGenerator)","u":"%3Cinit%3E(java.lang.String,dev.plex.world.CustomChunkGenerator)"},{"p":"dev.plex.cache","c":"MongoPlayerData","l":"datastore"},{"p":"dev.plex.cache","c":"DataUtils","l":"DataUtils()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"NameHistoryCMD","l":"DATE_FORMAT"},{"p":"dev.plex.punishment","c":"Punishment","l":"DATE_FORMAT"},{"p":"dev.plex.util","c":"TimeUnit","l":"DAY"},{"p":"dev.plex.util","c":"PlexLog","l":"debug(String, Object...)","u":"debug(java.lang.String,java.lang.Object...)"},{"p":"dev.plex.command.impl","c":"DebugCMD","l":"DebugCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"PlexLog","l":"debugEnabled"},{"p":"dev.plex.command.impl","c":"DeopAllCMD","l":"DeopAllCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"DeopCMD","l":"DeopCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.annotation","c":"CommandParameters","l":"description()"},{"p":"dev.plex.util.adapter","c":"LocalDateTimeDeserializer","l":"deserialize(JsonElement, Type, JsonDeserializationContext)","u":"deserialize(com.google.gson.JsonElement,java.lang.reflect.Type,com.google.gson.JsonDeserializationContext)"},{"p":"dev.plex.rank.enums","c":"Title","l":"DEV"},{"p":"dev.plex.util","c":"PlexUtils","l":"DEVELOPERS"},{"p":"dev.plex.player","c":"PlexPlayer","l":"displayName()"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"doPunishment(PunishedPlayer, Punishment)","u":"doPunishment(dev.plex.player.PunishedPlayer,dev.plex.punishment.Punishment)"},{"p":"dev.plex.punishment","c":"Punishment","l":"endDate"},{"p":"dev.plex.util","c":"PlexLog","l":"error(String, Object...)","u":"error(java.lang.String,java.lang.Object...)"},{"p":"dev.plex.command.impl","c":"CommandSpyCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command","c":"PlexCommand","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"AdminChatCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"AdminCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"AdminworldCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"AdventureCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"BanCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"CreativeCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"DebugCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"DeopAllCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"DeopCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"FlatlandsCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"FreezeCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"KickCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"ListCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"LocalSpawnCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"LockupCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"MasterbuilderworldCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"MuteCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"NameHistoryCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"OpAllCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"OpCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"PlexCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"PunishmentsCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"RankCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"RawSayCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"SpectatorCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"SurvivalCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"TagCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"TempbanCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"UnbanCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"UnfreezeCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"UnmuteCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"WorldCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.rank.enums","c":"Rank","l":"EXECUTIVE"},{"p":"dev.plex.cache","c":"MongoPlayerData","l":"exists(UUID)","u":"exists(java.util.UUID)"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"exists(UUID)","u":"exists(java.util.UUID)"},{"p":"dev.plex.config","c":"Config","l":"file"},{"p":"dev.plex.world","c":"FlatChunkGenerator","l":"FlatChunkGenerator(int, BlockPopulator...)","u":"%3Cinit%3E(int,org.bukkit.generator.BlockPopulator...)"},{"p":"dev.plex.command.impl","c":"FlatlandsCMD","l":"FlatlandsCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"FREEZE"},{"p":"dev.plex.command.impl","c":"FreezeCMD","l":"FreezeCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"FreezeListener","l":"FreezeListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.world","c":"NoiseOptions","l":"frequency"},{"p":"dev.plex.punishment","c":"Punishment","l":"fromJson(String)","u":"fromJson(java.lang.String)"},{"p":"dev.plex.event","c":"PunishedPlayerFreezeEvent","l":"frozen"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"frozen"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"gameMode"},{"p":"dev.plex.listener.impl","c":"GameModeListener","l":"GameModeListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"GameModeUpdateEvent()","u":"%3Cinit%3E()"},{"p":"dev.plex.services.impl","c":"GameRuleService","l":"GameRuleService()","u":"%3Cinit%3E()"},{"p":"dev.plex.world","c":"CustomWorld","l":"generate()"},{"p":"dev.plex.punishment","c":"Punishment","l":"generateBanMessage(Punishment)","u":"generateBanMessage(dev.plex.punishment.Punishment)"},{"p":"dev.plex.world","c":"FlatChunkGenerator","l":"generateChunkData(World, Random, int, int, ChunkGenerator.BiomeGrid)","u":"generateChunkData(org.bukkit.World,java.util.Random,int,int,org.bukkit.generator.ChunkGenerator.BiomeGrid)"},{"p":"dev.plex.world","c":"NoiseChunkGenerator","l":"generateChunkData(World, Random, int, int, ChunkGenerator.BiomeGrid)","u":"generateChunkData(org.bukkit.World,java.util.Random,int,int,org.bukkit.generator.ChunkGenerator.BiomeGrid)"},{"p":"dev.plex.world","c":"OctaveChunkGenerator","l":"generateChunkData(World, Random, int, int, ChunkGenerator.BiomeGrid)","u":"generateChunkData(org.bukkit.World,java.util.Random,int,int,org.bukkit.generator.ChunkGenerator.BiomeGrid)"},{"p":"dev.plex.world","c":"CustomWorld","l":"generateConfigFlatWorld(String)","u":"generateConfigFlatWorld(java.lang.String)"},{"p":"dev.plex.rank","c":"RankManager","l":"generateDefaultRanks()"},{"p":"dev.plex.punishment","c":"Punishment","l":"generateIndefBanMessage(String)","u":"generateIndefBanMessage(java.lang.String)"},{"p":"dev.plex","c":"Plex","l":"generateWorlds()"},{"p":"dev.plex.world","c":"CustomWorld","l":"generator()"},{"p":"dev.plex","c":"Plex","l":"get()"},{"p":"dev.plex.util","c":"TimeUnit","l":"get()"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"getActiveBans()"},{"p":"dev.plex.admin","c":"AdminList","l":"getAllAdmins()"},{"p":"dev.plex.cache","c":"MongoPlayerData","l":"getByUUID(UUID)","u":"getByUUID(java.util.UUID)"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"getByUUID(UUID)","u":"getByUUID(java.util.UUID)"},{"p":"dev.plex.util","c":"PlexUtils","l":"getChatColorFromConfig(Config, ChatColor, String)","u":"getChatColorFromConfig(dev.plex.config.Config,org.bukkit.ChatColor,java.lang.String)"},{"p":"dev.plex.storage","c":"SQLConnection","l":"getCon()"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"getCurrentInventoryIndex(Inventory)","u":"getCurrentInventoryIndex(org.bukkit.inventory.Inventory)"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"getCurrentInventoryIndex(Inventory)","u":"getCurrentInventoryIndex(org.bukkit.inventory.Inventory)"},{"p":"dev.plex.storage","c":"MongoConnection","l":"getDatastore()"},{"p":"dev.plex.util","c":"PlexUtils","l":"getDateFromLong(long)"},{"p":"dev.plex.util","c":"PlexUtils","l":"getDateNow()"},{"p":"dev.plex.world","c":"CustomChunkGenerator","l":"getDefaultPopulators(World)","u":"getDefaultPopulators(org.bukkit.World)"},{"p":"dev.plex.util","c":"PlexUtils","l":"getFromName(String)","u":"getFromName(java.lang.String)"},{"p":"dev.plex.event","c":"AdminAddEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"AdminRemoveEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"PunishedPlayerFreezeEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"PunishedPlayerLockupEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"PunishedPlayerMuteEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"AdminAddEvent","l":"getHandlers()"},{"p":"dev.plex.event","c":"AdminRemoveEvent","l":"getHandlers()"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"getHandlers()"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"getHandlers()"},{"p":"dev.plex.event","c":"PunishedPlayerFreezeEvent","l":"getHandlers()"},{"p":"dev.plex.event","c":"PunishedPlayerLockupEvent","l":"getHandlers()"},{"p":"dev.plex.event","c":"PunishedPlayerMuteEvent","l":"getHandlers()"},{"p":"dev.plex.util","c":"MojangUtils","l":"getInfo(String)","u":"getInfo(java.lang.String)"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"getInventory()"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"getInventory()"},{"p":"dev.plex.util.menu","c":"IMenu","l":"getInventory()"},{"p":"dev.plex.storage","c":"RedisConnection","l":"getJedis()"},{"p":"dev.plex.command","c":"PlexCommand","l":"getLevel()"},{"p":"dev.plex.rank","c":"RankManager","l":"getLoginMessage(PlexPlayer)","u":"getLoginMessage(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.command","c":"PlexCommand","l":"getMap()"},{"p":"dev.plex.util.menu","c":"AbstractMenu","l":"getName()"},{"p":"dev.plex.command","c":"PlexCommand","l":"getNonNullPlayer(String)","u":"getNonNullPlayer(java.lang.String)"},{"p":"dev.plex.command","c":"PlexCommand","l":"getNonNullWorld(String)","u":"getNonNullWorld(java.lang.String)"},{"p":"dev.plex.command","c":"PlexCommand","l":"getOfflinePlexPlayer(UUID)","u":"getOfflinePlexPlayer(java.util.UUID)"},{"p":"dev.plex.command","c":"PlexCommand","l":"getOnlinePlexPlayer(String)","u":"getOnlinePlexPlayer(java.lang.String)"},{"p":"dev.plex.cache","c":"DataUtils","l":"getPlayer(String)","u":"getPlayer(java.lang.String)"},{"p":"dev.plex.cache","c":"DataUtils","l":"getPlayer(UUID)","u":"getPlayer(java.util.UUID)"},{"p":"dev.plex.util","c":"PlexUtils","l":"getPlayerNameList()"},{"p":"dev.plex.command","c":"PlexCommand","l":"getPlexPlayer(Player)","u":"getPlexPlayer(org.bukkit.entity.Player)"},{"p":"dev.plex.cache","c":"PlayerCache","l":"getPlexPlayer(UUID)","u":"getPlexPlayer(java.util.UUID)"},{"p":"dev.plex.cache","c":"PlayerCache","l":"getPlexPlayerMap()"},{"p":"dev.plex.command","c":"PlexCommand","l":"getPlugin()"},{"p":"dev.plex.rank.enums","c":"Rank","l":"getPrefix()"},{"p":"dev.plex.rank.enums","c":"Title","l":"getPrefix()"},{"p":"dev.plex.rank","c":"RankManager","l":"getPrefix(PlexPlayer)","u":"getPrefix(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.cache","c":"PlayerCache","l":"getPunishedPlayer(UUID)","u":"getPunishedPlayer(java.util.UUID)"},{"p":"dev.plex.cache","c":"PlayerCache","l":"getPunishedPlayerMap()"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"getPunishments()"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"getPunishmentsFile()"},{"p":"dev.plex.player","c":"PlexPlayer","l":"getRankFromString()"},{"p":"dev.plex.rank","c":"RankManager","l":"getRankFromString(String)","u":"getRankFromString(java.lang.String)"},{"p":"dev.plex.command","c":"PlexCommand","l":"getUUID(CommandSender)","u":"getUUID(org.bukkit.command.CommandSender)"},{"p":"dev.plex.event","c":"AdminAddEvent","l":"handlers"},{"p":"dev.plex.event","c":"AdminRemoveEvent","l":"handlers"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"handlers"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"handlers"},{"p":"dev.plex.event","c":"PunishedPlayerFreezeEvent","l":"handlers"},{"p":"dev.plex.event","c":"PunishedPlayerLockupEvent","l":"handlers"},{"p":"dev.plex.event","c":"PunishedPlayerMuteEvent","l":"handlers"},{"p":"dev.plex.cache","c":"DataUtils","l":"hasPlayedBefore(UUID)","u":"hasPlayedBefore(java.util.UUID)"},{"p":"dev.plex.listener.impl","c":"ChatListener.PlexChatRenderer","l":"hasPrefix"},{"p":"dev.plex.world","c":"CustomChunkGenerator","l":"height"},{"p":"dev.plex.util","c":"TimeUnit","l":"HOUR"},{"p":"dev.plex.util","c":"PlexUtils","l":"hoursToSeconds(long)"},{"p":"dev.plex.player","c":"PlexPlayer","l":"id"},{"p":"dev.plex.rank","c":"RankManager","l":"importDefaultRanks()"},{"p":"dev.plex.rank.enums","c":"Rank","l":"IMPOSTOR"},{"p":"dev.plex.command.source","c":"RequiredCommandSource","l":"IN_GAME"},{"p":"dev.plex","c":"Plex","l":"indefBans"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"INSERT"},{"p":"dev.plex.cache","c":"DataUtils","l":"insert(PlexPlayer)","u":"insert(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"insert(PlexPlayer)","u":"insert(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"insertPunishment(PunishedPlayer, Punishment)","u":"insertPunishment(dev.plex.player.PunishedPlayer,dev.plex.punishment.Punishment)"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"inventories"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"inventories"},{"p":"dev.plex.player","c":"PlexPlayer","l":"ips"},{"p":"dev.plex.punishment","c":"Punishment","l":"IPS"},{"p":"dev.plex.command","c":"PlexCommand","l":"isAdmin(CommandSender)","u":"isAdmin(org.bukkit.command.CommandSender)"},{"p":"dev.plex.command","c":"PlexCommand","l":"isAdmin(PlexPlayer)","u":"isAdmin(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.rank","c":"RankManager","l":"isAdmin(PlexPlayer)","u":"isAdmin(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.command","c":"PlexCommand","l":"isAdmin(String)","u":"isAdmin(java.lang.String)"},{"p":"dev.plex.services","c":"AbstractService","l":"isAsynchronous()"},{"p":"dev.plex.rank.enums","c":"Rank","l":"isAtLeast(Rank)","u":"isAtLeast(dev.plex.rank.enums.Rank)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"isBanned(PunishedPlayer)","u":"isBanned(dev.plex.player.PunishedPlayer)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"isBanned(UUID)","u":"isBanned(java.util.UUID)"},{"p":"dev.plex.command","c":"PlexCommand","l":"isConsole(CommandSender)","u":"isConsole(org.bukkit.command.CommandSender)"},{"p":"dev.plex.storage","c":"RedisConnection","l":"isEnabled()"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"isIndefIPBanned(String)","u":"isIndefIPBanned(java.lang.String)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"isIndefUserBanned(String)","u":"isIndefUserBanned(java.lang.String)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"isIndefUUIDBanned(UUID)","u":"isIndefUUIDBanned(java.util.UUID)"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"isNotEmpty(File)","u":"isNotEmpty(java.io.File)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"isNotEmpty(File)","u":"isNotEmpty(java.io.File)"},{"p":"dev.plex.util","c":"PlexUtils","l":"isPluginCMD(String, String)","u":"isPluginCMD(java.lang.String,java.lang.String)"},{"p":"dev.plex.services","c":"AbstractService","l":"isRepeating()"},{"p":"dev.plex.command","c":"PlexCommand","l":"isSeniorAdmin(CommandSender)","u":"isSeniorAdmin(org.bukkit.command.CommandSender)"},{"p":"dev.plex.rank","c":"RankManager","l":"isSeniorAdmin(PlexPlayer)","u":"isSeniorAdmin(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"issuePunishment(PunishedPlayer, Punishment)","u":"issuePunishment(dev.plex.player.PunishedPlayer,dev.plex.punishment.Punishment)"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"isValidInventory(Inventory)","u":"isValidInventory(org.bukkit.inventory.Inventory)"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"isValidInventory(Inventory)","u":"isValidInventory(org.bukkit.inventory.Inventory)"},{"p":"dev.plex.storage","c":"RedisConnection","l":"jedis"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"KICK"},{"p":"dev.plex.command.impl","c":"KickCMD","l":"KickCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command","c":"PlexCommand","l":"level"},{"p":"dev.plex.rank.enums","c":"Rank","l":"level"},{"p":"dev.plex.rank.enums","c":"Title","l":"level"},{"p":"dev.plex.command.annotation","c":"CommandPermissions","l":"level()"},{"p":"dev.plex.command.impl","c":"ListCMD","l":"ListCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.handlers","c":"ListenerHandler","l":"ListenerHandler()","u":"%3Cinit%3E()"},{"p":"dev.plex.config","c":"Config","l":"load()"},{"p":"dev.plex.util","c":"AshconInfo.UsernameHistory","l":"localDateTime"},{"p":"dev.plex.util.adapter","c":"LocalDateTimeDeserializer","l":"LocalDateTimeDeserializer()","u":"%3Cinit%3E()"},{"p":"dev.plex.util.adapter","c":"LocalDateTimeSerializer","l":"LocalDateTimeSerializer()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"LocalSpawnCMD","l":"LocalSpawnCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.event","c":"PunishedPlayerLockupEvent","l":"lockedUp"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"lockedUp"},{"p":"dev.plex.command.impl","c":"LockupCMD","l":"LockupCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"PlexLog","l":"log(String, Object...)","u":"log(java.lang.String,java.lang.Object...)"},{"p":"dev.plex.player","c":"PlexPlayer","l":"loginMessage"},{"p":"dev.plex.rank.enums","c":"Rank","l":"loginMessage"},{"p":"dev.plex.rank.enums","c":"Title","l":"loginMessage"},{"p":"dev.plex.storage","c":"StorageType","l":"MARIADB"},{"p":"dev.plex.rank.enums","c":"Title","l":"MASTER_BUILDER"},{"p":"dev.plex.command.impl","c":"MasterbuilderworldCMD","l":"MasterbuilderworldCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command","c":"PlexCommand","l":"matches(String)","u":"matches(java.lang.String)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"mergeIndefiniteBans()"},{"p":"dev.plex.command","c":"PlexCommand","l":"messageComponent(String, Object...)","u":"messageComponent(java.lang.String,java.lang.Object...)"},{"p":"dev.plex.util","c":"PlexUtils","l":"messageComponent(String, Object...)","u":"messageComponent(java.lang.String,java.lang.Object...)"},{"p":"dev.plex","c":"Plex","l":"messages"},{"p":"dev.plex.command","c":"PlexCommand","l":"messageString(String, Object...)","u":"messageString(java.lang.String,java.lang.Object...)"},{"p":"dev.plex.util","c":"PlexUtils","l":"messageString(String, Object...)","u":"messageString(java.lang.String,java.lang.Object...)"},{"p":"dev.plex.util","c":"TimeUnit","l":"MINUTE"},{"p":"dev.plex.util","c":"PlexUtils","l":"minutesToSeconds(long)"},{"p":"dev.plex.command","c":"PlexCommand","l":"mmString(String)","u":"mmString(java.lang.String)"},{"p":"dev.plex.util","c":"MojangUtils","l":"MojangUtils()","u":"%3Cinit%3E()"},{"p":"dev.plex","c":"Plex","l":"mongoConnection"},{"p":"dev.plex.storage","c":"MongoConnection","l":"MongoConnection()","u":"%3Cinit%3E()"},{"p":"dev.plex.storage","c":"StorageType","l":"MONGODB"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"mongoPlayerData"},{"p":"dev.plex","c":"Plex","l":"mongoPlayerData"},{"p":"dev.plex.cache","c":"MongoPlayerData","l":"MongoPlayerData()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"TimeUnit","l":"MONTH"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"MUTE"},{"p":"dev.plex.command.impl","c":"MuteCMD","l":"MuteCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.event","c":"PunishedPlayerMuteEvent","l":"muted"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"muted"},{"p":"dev.plex.config","c":"Config","l":"name"},{"p":"dev.plex.player","c":"PlexPlayer","l":"name"},{"p":"dev.plex.util.menu","c":"AbstractMenu","l":"name"},{"p":"dev.plex.command.annotation","c":"CommandParameters","l":"name()"},{"p":"dev.plex.command.impl","c":"NameHistoryCMD","l":"NameHistoryCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.services.impl","c":"UpdateCheckerService","l":"newVersion"},{"p":"dev.plex.world","c":"NoiseChunkGenerator","l":"NoiseChunkGenerator(int, NoiseOptions, BlockPopulator...)","u":"%3Cinit%3E(int,dev.plex.world.NoiseOptions,org.bukkit.generator.BlockPopulator...)"},{"p":"dev.plex.world","c":"NoiseOptions","l":"NoiseOptions(int, int, double, double, boolean)","u":"%3Cinit%3E(int,int,double,double,boolean)"},{"p":"dev.plex.rank.enums","c":"Rank","l":"NONOP"},{"p":"dev.plex.world","c":"NoiseOptions","l":"normalized"},{"p":"dev.plex.world","c":"OctaveChunkGenerator","l":"OctaveChunkGenerator(int, OctaveOptions, BlockPopulator...)","u":"%3Cinit%3E(int,dev.plex.world.OctaveOptions,org.bukkit.generator.BlockPopulator...)"},{"p":"dev.plex.world","c":"OctaveOptions","l":"OctaveOptions(int, int, double, double, boolean, int)","u":"%3Cinit%3E(int,int,double,double,boolean,int)"},{"p":"dev.plex.world","c":"OctaveOptions","l":"octaves"},{"p":"dev.plex.listener.impl","c":"AdminListener","l":"onAdminAdd(AdminAddEvent)","u":"onAdminAdd(dev.plex.event.AdminAddEvent)"},{"p":"dev.plex.listener.impl","c":"AdminListener","l":"onAdminRemove(AdminRemoveEvent)","u":"onAdminRemove(dev.plex.event.AdminRemoveEvent)"},{"p":"dev.plex.listener.impl","c":"AdminListener","l":"onAdminSetRank(AdminSetRankEvent)","u":"onAdminSetRank(dev.plex.event.AdminSetRankEvent)"},{"p":"dev.plex.listener.impl","c":"WorldListener","l":"onBlockBreak(BlockBreakEvent)","u":"onBlockBreak(org.bukkit.event.block.BlockBreakEvent)"},{"p":"dev.plex.listener.impl","c":"WorldListener","l":"onBlockPlace(BlockPlaceEvent)","u":"onBlockPlace(org.bukkit.event.block.BlockPlaceEvent)"},{"p":"dev.plex.listener.impl","c":"ChatListener","l":"onChat(AsyncChatEvent)","u":"onChat(io.papermc.paper.event.player.AsyncChatEvent)"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"onClick(InventoryClickEvent)","u":"onClick(org.bukkit.event.inventory.InventoryClickEvent)"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"onClick(InventoryClickEvent)","u":"onClick(org.bukkit.event.inventory.InventoryClickEvent)"},{"p":"dev.plex.util.menu","c":"IMenu","l":"onClick(InventoryClickEvent)","u":"onClick(org.bukkit.event.inventory.InventoryClickEvent)"},{"p":"dev.plex","c":"Plex","l":"onDisable()"},{"p":"dev.plex","c":"Plex","l":"onEnable()"},{"p":"dev.plex.listener.impl","c":"WorldListener","l":"onEntitySpawn(EntitySpawnEvent)","u":"onEntitySpawn(org.bukkit.event.entity.EntitySpawnEvent)"},{"p":"dev.plex.listener.impl","c":"GameModeListener","l":"onGameModeUpdate(GameModeUpdateEvent)","u":"onGameModeUpdate(dev.plex.event.GameModeUpdateEvent)"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"onInventoryClick(InventoryClickEvent)","u":"onInventoryClick(org.bukkit.event.inventory.InventoryClickEvent)"},{"p":"dev.plex","c":"Plex","l":"onLoad()"},{"p":"dev.plex.listener.impl","c":"CommandListener","l":"onPlayerCommandPreprocess(PlayerCommandPreprocessEvent)","u":"onPlayerCommandPreprocess(org.bukkit.event.player.PlayerCommandPreprocessEvent)"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"onPlayerInventoryClose(InventoryCloseEvent)","u":"onPlayerInventoryClose(org.bukkit.event.inventory.InventoryCloseEvent)"},{"p":"dev.plex.listener.impl","c":"FreezeListener","l":"onPlayerMove(PlayerMoveEvent)","u":"onPlayerMove(org.bukkit.event.player.PlayerMoveEvent)"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"onPlayerSave(PlayerQuitEvent)","u":"onPlayerSave(org.bukkit.event.player.PlayerQuitEvent)"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"onPlayerSetup(PlayerJoinEvent)","u":"onPlayerSetup(org.bukkit.event.player.PlayerJoinEvent)"},{"p":"dev.plex.listener.impl","c":"BanListener","l":"onPreLogin(AsyncPlayerPreLoginEvent)","u":"onPreLogin(org.bukkit.event.player.AsyncPlayerPreLoginEvent)"},{"p":"dev.plex.listener.impl","c":"ServerListener","l":"onServerPing(PaperServerListPingEvent)","u":"onServerPing(com.destroystokyo.paper.event.server.PaperServerListPingEvent)"},{"p":"dev.plex.rank.enums","c":"Rank","l":"OP"},{"p":"dev.plex.command.impl","c":"OpAllCMD","l":"OpAllCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"OpCMD","l":"OpCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.util.menu","c":"IMenu","l":"openInv(Player)","u":"openInv(org.bukkit.entity.Player)"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"openInv(Player, int)","u":"openInv(org.bukkit.entity.Player,int)"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"openInv(Player, int)","u":"openInv(org.bukkit.entity.Player,int)"},{"p":"dev.plex.rank","c":"RankManager","l":"options"},{"p":"dev.plex.world","c":"NoiseChunkGenerator","l":"options"},{"p":"dev.plex.world","c":"OctaveChunkGenerator","l":"options"},{"p":"dev.plex.rank.enums","c":"Title","l":"OWNER"},{"p":"dev.plex.command","c":"PlexCommand","l":"params"},{"p":"dev.plex.util","c":"PlexUtils","l":"parseDateOffset(String...)","u":"parseDateOffset(java.lang.String...)"},{"p":"dev.plex.command.annotation","c":"CommandPermissions","l":"permission()"},{"p":"dev.plex.command","c":"PlexCommand","l":"perms"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"player"},{"p":"dev.plex.player","c":"PlexPlayer","l":"player"},{"p":"dev.plex.cache","c":"PlayerCache","l":"PlayerCache()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"PlayerListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.exception","c":"PlayerNotBannedException","l":"PlayerNotBannedException()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.exception","c":"PlayerNotFoundException","l":"PlayerNotFoundException()","u":"%3Cinit%3E()"},{"p":"dev.plex","c":"Plex","l":"Plex()","u":"%3Cinit%3E()"},{"p":"dev.plex","c":"PlexBase","l":"PlexBase()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"ChatListener.PlexChatRenderer","l":"PlexChatRenderer()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"PlexCMD","l":"PlexCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command","c":"PlexCommand","l":"PlexCommand()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener","c":"PlexListener","l":"PlexListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"PlexLog","l":"PlexLog()","u":"%3Cinit%3E()"},{"p":"dev.plex.event","c":"AdminAddEvent","l":"plexPlayer"},{"p":"dev.plex.event","c":"AdminRemoveEvent","l":"plexPlayer"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"plexPlayer"},{"p":"dev.plex.player","c":"PlexPlayer","l":"PlexPlayer()","u":"%3Cinit%3E()"},{"p":"dev.plex.player","c":"PlexPlayer","l":"PlexPlayer(UUID)","u":"%3Cinit%3E(java.util.UUID)"},{"p":"dev.plex.cache","c":"PlayerCache","l":"plexPlayerMap"},{"p":"dev.plex.util","c":"PlexUtils","l":"PlexUtils()","u":"%3Cinit%3E()"},{"p":"dev.plex.command","c":"PlexCommand","l":"plugin"},{"p":"dev.plex.config","c":"Config","l":"plugin"},{"p":"dev.plex","c":"Plex","l":"plugin"},{"p":"dev.plex","c":"PlexBase","l":"plugin"},{"p":"dev.plex.world","c":"ConfigurationChunkGenerator","l":"plugin"},{"p":"dev.plex.world","c":"CustomWorld","l":"plugin"},{"p":"dev.plex.world","c":"CustomChunkGenerator","l":"populators"},{"p":"dev.plex.listener.impl","c":"ChatListener.PlexChatRenderer","l":"prefix"},{"p":"dev.plex.player","c":"PlexPlayer","l":"prefix"},{"p":"dev.plex.rank.enums","c":"Rank","l":"prefix"},{"p":"dev.plex.rank.enums","c":"Title","l":"prefix"},{"p":"dev.plex.punishment","c":"Punishment","l":"punished"},{"p":"dev.plex.event","c":"PunishedPlayerEvent","l":"punishedPlayer"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"punishedPlayer"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"PunishedPlayer(UUID)","u":"%3Cinit%3E(java.util.UUID)"},{"p":"dev.plex.event","c":"PunishedPlayerEvent","l":"PunishedPlayerEvent(PunishedPlayer)","u":"%3Cinit%3E(dev.plex.player.PunishedPlayer)"},{"p":"dev.plex.event","c":"PunishedPlayerFreezeEvent","l":"PunishedPlayerFreezeEvent(PunishedPlayer, boolean)","u":"%3Cinit%3E(dev.plex.player.PunishedPlayer,boolean)"},{"p":"dev.plex.event","c":"PunishedPlayerLockupEvent","l":"PunishedPlayerLockupEvent(PunishedPlayer, boolean)","u":"%3Cinit%3E(dev.plex.player.PunishedPlayer,boolean)"},{"p":"dev.plex.cache","c":"PlayerCache","l":"punishedPlayerMap"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"PunishedPlayerMenu(PunishedPlayer)","u":"%3Cinit%3E(dev.plex.player.PunishedPlayer)"},{"p":"dev.plex.event","c":"PunishedPlayerMuteEvent","l":"PunishedPlayerMuteEvent(PunishedPlayer, boolean)","u":"%3Cinit%3E(dev.plex.player.PunishedPlayer,boolean)"},{"p":"dev.plex.punishment","c":"Punishment","l":"punishedUsername"},{"p":"dev.plex.punishment","c":"Punishment","l":"punisher"},{"p":"dev.plex.punishment","c":"Punishment","l":"Punishment(UUID, UUID)","u":"%3Cinit%3E(java.util.UUID,java.util.UUID)"},{"p":"dev.plex","c":"Plex","l":"punishmentManager"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"PunishmentManager()","u":"%3Cinit%3E()"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"PunishmentMenu()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"PunishmentsCMD","l":"PunishmentsCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"PunishmentType()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"PlexUtils","l":"RANDOM"},{"p":"dev.plex.util","c":"PlexUtils","l":"randomChatColor()"},{"p":"dev.plex.util","c":"PlexUtils","l":"randomNum()"},{"p":"dev.plex.util","c":"PlexUtils","l":"randomNum(int)"},{"p":"dev.plex.util","c":"PlexUtils","l":"randomNum(int, int)","u":"randomNum(int,int)"},{"p":"dev.plex.admin","c":"Admin","l":"rank"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"rank"},{"p":"dev.plex.player","c":"PlexPlayer","l":"rank"},{"p":"dev.plex.rank.enums","c":"Rank","l":"Rank(int, String, String, String)","u":"%3Cinit%3E(int,java.lang.String,java.lang.String,java.lang.String)"},{"p":"dev.plex.command.impl","c":"RankCMD","l":"RankCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"AdminCMD","l":"rankExists(String)","u":"rankExists(java.lang.String)"},{"p":"dev.plex","c":"Plex","l":"rankManager"},{"p":"dev.plex.rank","c":"RankManager","l":"RankManager()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"AshconInfo.Textures","l":"raw"},{"p":"dev.plex.command.impl","c":"RawSayCMD","l":"RawSayCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.rank.enums","c":"Rank","l":"readable"},{"p":"dev.plex.rank.enums","c":"Title","l":"readable"},{"p":"dev.plex.punishment","c":"Punishment","l":"reason"},{"p":"dev.plex","c":"Plex","l":"redisConnection"},{"p":"dev.plex.storage","c":"RedisConnection","l":"RedisConnection()","u":"%3Cinit%3E()"},{"p":"dev.plex.services","c":"ServiceManager","l":"registerService(AbstractService)","u":"registerService(dev.plex.services.AbstractService)"},{"p":"dev.plex.util","c":"PlexUtils","l":"regxList"},{"p":"dev.plex","c":"Plex","l":"reloadPlayers()"},{"p":"dev.plex.command.impl","c":"TagCMD","l":"removeEvents(Component)","u":"removeEvents(net.kyori.adventure.text.Component)"},{"p":"dev.plex.admin","c":"AdminList","l":"removeFromCache(UUID)","u":"removeFromCache(java.util.UUID)"},{"p":"dev.plex.listener.impl","c":"ChatListener.PlexChatRenderer","l":"render(Player, Component, Component, Audience)","u":"render(org.bukkit.entity.Player,net.kyori.adventure.text.Component,net.kyori.adventure.text.Component,net.kyori.adventure.audience.Audience)"},{"p":"dev.plex.listener.impl","c":"ChatListener","l":"renderer"},{"p":"dev.plex.services","c":"AbstractService","l":"repeating"},{"p":"dev.plex.services.impl","c":"BanService","l":"repeatInSeconds()"},{"p":"dev.plex.services.impl","c":"GameRuleService","l":"repeatInSeconds()"},{"p":"dev.plex.services.impl","c":"UpdateCheckerService","l":"repeatInSeconds()"},{"p":"dev.plex.services","c":"IService","l":"repeatInSeconds()"},{"p":"dev.plex.command.source","c":"RequiredCommandSource","l":"RequiredCommandSource()","u":"%3Cinit%3E()"},{"p":"dev.plex.services.impl","c":"BanService","l":"run()"},{"p":"dev.plex.services.impl","c":"GameRuleService","l":"run()"},{"p":"dev.plex.services.impl","c":"UpdateCheckerService","l":"run()"},{"p":"dev.plex.services","c":"IService","l":"run()"},{"p":"dev.plex.storage","c":"RedisConnection","l":"runAsync(Consumer)","u":"runAsync(java.util.function.Consumer)"},{"p":"dev.plex.config","c":"Config","l":"save()"},{"p":"dev.plex.cache","c":"MongoPlayerData","l":"save(PlexPlayer)","u":"save(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.config","c":"Config","l":"saveDefault()"},{"p":"dev.plex.util","c":"TimeUnit","l":"SECOND"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"SELECT"},{"p":"dev.plex.command","c":"PlexCommand","l":"send(Audience, Component)","u":"send(net.kyori.adventure.audience.Audience,net.kyori.adventure.text.Component)"},{"p":"dev.plex.command","c":"PlexCommand","l":"send(Audience, String)","u":"send(net.kyori.adventure.audience.Audience,java.lang.String)"},{"p":"dev.plex.event","c":"AdminAddEvent","l":"sender"},{"p":"dev.plex.event","c":"AdminRemoveEvent","l":"sender"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"sender"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"sender"},{"p":"dev.plex.rank.enums","c":"Rank","l":"SENIOR_ADMIN"},{"p":"dev.plex.util.adapter","c":"LocalDateTimeSerializer","l":"serialize(LocalDateTime, Type, JsonSerializationContext)","u":"serialize(java.time.LocalDateTime,java.lang.reflect.Type,com.google.gson.JsonSerializationContext)"},{"p":"dev.plex.listener.impl","c":"ServerListener","l":"ServerListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.services","c":"ServiceManager","l":"serviceCount()"},{"p":"dev.plex","c":"Plex","l":"serviceManager"},{"p":"dev.plex.services","c":"ServiceManager","l":"ServiceManager()","u":"%3Cinit%3E()"},{"p":"dev.plex.services","c":"ServiceManager","l":"services"},{"p":"dev.plex.util","c":"PlexUtils","l":"setBlocks(Location, Location, Material)","u":"setBlocks(org.bukkit.Location,org.bukkit.Location,org.bukkit.Material)"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"setFrozen(boolean)"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"setLockedUp(boolean)"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"setMuted(boolean)"},{"p":"dev.plex.util","c":"AshconInfo.SkinData","l":"signature"},{"p":"dev.plex.util","c":"PlexUtils","l":"simpleGET(String)","u":"simpleGET(java.lang.String)"},{"p":"dev.plex.util","c":"AshconInfo.SkinData","l":"SkinData()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"AshconInfo.Textures","l":"slim"},{"p":"dev.plex.command.annotation","c":"CommandPermissions","l":"source()"},{"p":"dev.plex.command.impl","c":"SpectatorCMD","l":"SpectatorCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex","c":"Plex","l":"sqlConnection"},{"p":"dev.plex.storage","c":"SQLConnection","l":"SQLConnection()","u":"%3Cinit%3E()"},{"p":"dev.plex.storage","c":"StorageType","l":"SQLITE"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"sqlPlayerData"},{"p":"dev.plex","c":"Plex","l":"sqlPlayerData"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"SQLPlayerData()","u":"%3Cinit%3E()"},{"p":"dev.plex.admin","c":"Admin","l":"staffChat"},{"p":"dev.plex.services","c":"ServiceManager","l":"startServices()"},{"p":"dev.plex","c":"Plex","l":"storageType"},{"p":"dev.plex.storage","c":"StorageType","l":"StorageType()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"SurvivalCMD","l":"SurvivalCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex","c":"Plex","l":"system"},{"p":"dev.plex.command.impl","c":"AdminCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"AdventureCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"BanCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"CreativeCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"DebugCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"DeopCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"FreezeCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"LockupCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"MuteCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"NameHistoryCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"OpCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"PlexCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"PunishmentsCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"SpectatorCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"SurvivalCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"TempbanCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"UnbanCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"UnfreezeCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"UnmuteCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"WorldCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"TagCMD","l":"TagCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"TempbanCMD","l":"TempbanCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"PlexUtils","l":"testConnections()"},{"p":"dev.plex.util","c":"AshconInfo","l":"textures"},{"p":"dev.plex.util","c":"AshconInfo.Textures","l":"Textures()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"TimeUnit","l":"time"},{"p":"dev.plex.util","c":"TimeUnit","l":"TimeUnit(long)","u":"%3Cinit%3E(long)"},{"p":"dev.plex.rank.enums","c":"Title","l":"Title(int, String, String, String)","u":"%3Cinit%3E(int,java.lang.String,java.lang.String,java.lang.String)"},{"p":"dev.plex.punishment","c":"Punishment","l":"toJSON()"},{"p":"dev.plex.rank.enums","c":"Rank","l":"toJSON()"},{"p":"dev.plex.rank.enums","c":"Title","l":"toJSON()"},{"p":"dev.plex.punishment","c":"Punishment","l":"type"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"unban(Punishment)","u":"unban(dev.plex.punishment.Punishment)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"unban(UUID)","u":"unban(java.util.UUID)"},{"p":"dev.plex.command.impl","c":"UnbanCMD","l":"UnbanCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"UnfreezeCMD","l":"UnfreezeCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"UnmuteCMD","l":"UnmuteCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"UPDATE"},{"p":"dev.plex.cache","c":"DataUtils","l":"update(PlexPlayer)","u":"update(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.cache","c":"MongoPlayerData","l":"update(PlexPlayer)","u":"update(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"update(PlexPlayer)","u":"update(dev.plex.player.PlexPlayer)"},{"p":"dev.plex","c":"Plex","l":"updateChecker"},{"p":"dev.plex.util","c":"UpdateChecker","l":"UpdateChecker()","u":"%3Cinit%3E()"},{"p":"dev.plex.services.impl","c":"UpdateCheckerService","l":"UpdateCheckerService()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.annotation","c":"CommandParameters","l":"usage()"},{"p":"dev.plex.command","c":"PlexCommand","l":"usage()"},{"p":"dev.plex.command","c":"PlexCommand","l":"usage(String)","u":"usage(java.lang.String)"},{"p":"dev.plex.util","c":"AshconInfo","l":"username"},{"p":"dev.plex.util","c":"AshconInfo.UsernameHistory","l":"username"},{"p":"dev.plex.util","c":"AshconInfo","l":"usernameHistories"},{"p":"dev.plex.util","c":"AshconInfo.UsernameHistory","l":"UsernameHistory()","u":"%3Cinit%3E()"},{"p":"dev.plex.admin","c":"Admin","l":"uuid"},{"p":"dev.plex.player","c":"PlexPlayer","l":"uuid"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"uuid"},{"p":"dev.plex.util","c":"AshconInfo","l":"uuid"},{"p":"dev.plex.util","c":"AshconInfo.SkinData","l":"value"},{"p":"dev.plex.command.source","c":"RequiredCommandSource","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"dev.plex.rank.enums","c":"Rank","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"dev.plex.rank.enums","c":"Title","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"dev.plex.storage","c":"StorageType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"dev.plex.util","c":"TimeUnit","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"dev.plex.command.source","c":"RequiredCommandSource","l":"values()"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"values()"},{"p":"dev.plex.rank.enums","c":"Rank","l":"values()"},{"p":"dev.plex.rank.enums","c":"Title","l":"values()"},{"p":"dev.plex.storage","c":"StorageType","l":"values()"},{"p":"dev.plex.util","c":"TimeUnit","l":"values()"},{"p":"dev.plex.player","c":"PlexPlayer","l":"vanished"},{"p":"dev.plex.util","c":"PlexUtils","l":"verify(String)","u":"verify(java.lang.String)"},{"p":"dev.plex.util","c":"TimeUnit","l":"WEEK"},{"p":"dev.plex.command.impl","c":"WorldCMD","l":"WorldCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"WorldListener","l":"WorldListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.world","c":"NoiseOptions","l":"x"},{"p":"dev.plex.world","c":"NoiseOptions","l":"y"},{"p":"dev.plex.util","c":"TimeUnit","l":"YEAR"}];updateSearchResults(); \ No newline at end of file +memberSearchIndex = [{"p":"dev.plex.util","c":"PlexUtils","l":"a(String)","u":"a(java.lang.String)"},{"p":"dev.plex.util.menu","c":"AbstractMenu","l":"AbstractMenu(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"dev.plex.services","c":"AbstractService","l":"AbstractService(boolean, boolean)","u":"%3Cinit%3E(boolean,boolean)"},{"p":"dev.plex.punishment","c":"Punishment","l":"active"},{"p":"dev.plex.config","c":"Config","l":"added"},{"p":"dev.plex.admin","c":"AdminList","l":"addToCache(Admin)","u":"addToCache(dev.plex.admin.Admin)"},{"p":"dev.plex.rank.enums","c":"Rank","l":"ADMIN"},{"p":"dev.plex.admin","c":"Admin","l":"Admin(UUID)","u":"%3Cinit%3E(java.util.UUID)"},{"p":"dev.plex.event","c":"AdminAddEvent","l":"AdminAddEvent()","u":"%3Cinit%3E()"},{"p":"dev.plex.admin","c":"Admin","l":"adminChat"},{"p":"dev.plex.listener.impl","c":"ChatListener","l":"adminChat(CommandSender, String)","u":"adminChat(org.bukkit.command.CommandSender,java.lang.String)"},{"p":"dev.plex.command.impl","c":"AdminChatCMD","l":"AdminChatCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"AdminCMD","l":"AdminCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex","c":"Plex","l":"adminList"},{"p":"dev.plex.admin","c":"AdminList","l":"AdminList()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"AdminListener","l":"AdminListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.event","c":"AdminRemoveEvent","l":"AdminRemoveEvent()","u":"%3Cinit%3E()"},{"p":"dev.plex.admin","c":"AdminList","l":"admins"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"AdminSetRankEvent()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"AdminworldCMD","l":"AdminworldCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"AdventureCMD","l":"AdventureCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.annotation","c":"CommandParameters","l":"aliases()"},{"p":"dev.plex.world","c":"NoiseOptions","l":"amplitude"},{"p":"dev.plex.command.source","c":"RequiredCommandSource","l":"ANY"},{"p":"dev.plex.util","c":"AshconInfo","l":"AshconInfo()","u":"%3Cinit%3E()"},{"p":"dev.plex.services","c":"AbstractService","l":"asynchronous"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"BAN"},{"p":"dev.plex.command.impl","c":"BanCMD","l":"BanCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"BanListener","l":"BanListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.services.impl","c":"BanService","l":"BanService()","u":"%3Cinit%3E()"},{"p":"dev.plex.punishment","c":"Punishment","l":"banUrl"},{"p":"dev.plex.world","c":"BlockMapChunkGenerator","l":"blockMap"},{"p":"dev.plex.world","c":"BlockMapChunkGenerator","l":"BlockMapChunkGenerator(LinkedHashMap, BlockPopulator...)","u":"%3Cinit%3E(java.util.LinkedHashMap,org.bukkit.generator.BlockPopulator...)"},{"p":"dev.plex.util","c":"PlexUtils","l":"broadcast(Component)","u":"broadcast(net.kyori.adventure.text.Component)"},{"p":"dev.plex.util","c":"PlexUtils","l":"broadcast(String)","u":"broadcast(java.lang.String)"},{"p":"dev.plex.event","c":"PunishedPlayerEvent","l":"cancelled"},{"p":"dev.plex.util","c":"PlexUtils","l":"CHAT_COLOR_NAMES"},{"p":"dev.plex.util","c":"PlexUtils","l":"CHAT_COLOR_POOL"},{"p":"dev.plex.listener.impl","c":"ChatListener","l":"ChatListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"UpdateChecker","l":"check()"},{"p":"dev.plex.util","c":"PlexUtils","l":"check(T)"},{"p":"dev.plex.listener.impl","c":"WorldListener","l":"checkLevel(PlexPlayer, String[])","u":"checkLevel(dev.plex.player.PlexPlayer,java.lang.String[])"},{"p":"dev.plex.command","c":"PlexCommand","l":"checkRank(CommandSender, Rank, String)","u":"checkRank(org.bukkit.command.CommandSender,dev.plex.rank.enums.Rank,java.lang.String)"},{"p":"dev.plex.command","c":"PlexCommand","l":"checkRank(Player, Rank, String)","u":"checkRank(org.bukkit.entity.Player,dev.plex.rank.enums.Rank,java.lang.String)"},{"p":"dev.plex.command","c":"PlexCommand","l":"checkTab(CommandSender, Rank, String)","u":"checkTab(org.bukkit.command.CommandSender,dev.plex.rank.enums.Rank,java.lang.String)"},{"p":"dev.plex.command","c":"PlexCommand","l":"checkTab(Player, Rank, String)","u":"checkTab(org.bukkit.entity.Player,dev.plex.rank.enums.Rank,java.lang.String)"},{"p":"dev.plex.world","c":"CustomWorld","l":"chunks"},{"p":"dev.plex.player","c":"PlexPlayer","l":"coins"},{"p":"dev.plex.util","c":"PlexUtils","l":"colorize(String)","u":"colorize(java.lang.String)"},{"p":"dev.plex.command.exception","c":"CommandFailException","l":"CommandFailException(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"dev.plex.handlers","c":"CommandHandler","l":"CommandHandler()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"CommandListener","l":"CommandListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.module","c":"PlexModule","l":"commands"},{"p":"dev.plex.command","c":"PlexCommand","l":"commandSource"},{"p":"dev.plex.admin","c":"Admin","l":"commandSpy"},{"p":"dev.plex.player","c":"PlexPlayer","l":"commandSpy"},{"p":"dev.plex.command.impl","c":"CommandSpyCMD","l":"CommandSpyCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"PlexUtils","l":"commitGameRules(World)","u":"commitGameRules(org.bukkit.World)"},{"p":"dev.plex.command","c":"PlexCommand","l":"componentFromString(String)","u":"componentFromString(java.lang.String)"},{"p":"dev.plex","c":"Plex","l":"config"},{"p":"dev.plex.config","c":"Config","l":"Config(Plex, String)","u":"%3Cinit%3E(dev.plex.Plex,java.lang.String)"},{"p":"dev.plex.world","c":"ConfigurationChunkGenerator","l":"ConfigurationChunkGenerator(String, BlockPopulator...)","u":"%3Cinit%3E(java.lang.String,org.bukkit.generator.BlockPopulator...)"},{"p":"dev.plex.storage","c":"SQLConnection","l":"connection"},{"p":"dev.plex.command.source","c":"RequiredCommandSource","l":"CONSOLE"},{"p":"dev.plex.command.exception","c":"ConsoleMustDefinePlayerException","l":"ConsoleMustDefinePlayerException()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.exception","c":"ConsoleOnlyException","l":"ConsoleOnlyException()","u":"%3Cinit%3E()"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"convertPunishments()"},{"p":"dev.plex.world","c":"ConfigurationChunkGenerator","l":"createBlockMap(String)","u":"createBlockMap(java.lang.String)"},{"p":"dev.plex.world","c":"BlockMapChunkGenerator","l":"createLoopChunkData(int, int, int, ChunkGenerator.ChunkData)","u":"createLoopChunkData(int,int,int,org.bukkit.generator.ChunkGenerator.ChunkData)"},{"p":"dev.plex.world","c":"CustomChunkGenerator","l":"createLoopChunkData(int, int, int, ChunkGenerator.ChunkData)","u":"createLoopChunkData(int,int,int,org.bukkit.generator.ChunkGenerator.ChunkData)"},{"p":"dev.plex.world","c":"FlatChunkGenerator","l":"createLoopChunkData(int, int, int, ChunkGenerator.ChunkData)","u":"createLoopChunkData(int,int,int,org.bukkit.generator.ChunkGenerator.ChunkData)"},{"p":"dev.plex.world","c":"NoiseChunkGenerator","l":"createLoopChunkData(int, int, int, ChunkGenerator.ChunkData)","u":"createLoopChunkData(int,int,int,org.bukkit.generator.ChunkGenerator.ChunkData)"},{"p":"dev.plex.world","c":"OctaveChunkGenerator","l":"createLoopChunkData(int, int, int, ChunkGenerator.ChunkData)","u":"createLoopChunkData(int,int,int,org.bukkit.generator.ChunkGenerator.ChunkData)"},{"p":"dev.plex.command.impl","c":"CreativeCMD","l":"CreativeCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"UpdateChecker","l":"currentVersion"},{"p":"dev.plex.util","c":"AshconInfo.Textures","l":"custom"},{"p":"dev.plex.world","c":"CustomChunkGenerator","l":"CustomChunkGenerator(int, BlockPopulator...)","u":"%3Cinit%3E(int,org.bukkit.generator.BlockPopulator...)"},{"p":"dev.plex.punishment","c":"Punishment","l":"customTime"},{"p":"dev.plex.world","c":"CustomWorld","l":"CustomWorld(String, CustomChunkGenerator)","u":"%3Cinit%3E(java.lang.String,dev.plex.world.CustomChunkGenerator)"},{"p":"dev.plex.module","c":"PlexModule","l":"dataFolder"},{"p":"dev.plex.cache","c":"MongoPlayerData","l":"datastore"},{"p":"dev.plex.cache","c":"DataUtils","l":"DataUtils()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"NameHistoryCMD","l":"DATE_FORMAT"},{"p":"dev.plex.punishment","c":"Punishment","l":"DATE_FORMAT"},{"p":"dev.plex.util","c":"TimeUnit","l":"DAY"},{"p":"dev.plex.util","c":"PlexLog","l":"debug(String, Object...)","u":"debug(java.lang.String,java.lang.Object...)"},{"p":"dev.plex.command.impl","c":"DebugCMD","l":"DebugCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"PlexLog","l":"debugEnabled"},{"p":"dev.plex.command.impl","c":"DeopAllCMD","l":"DeopAllCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"DeopCMD","l":"DeopCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.module","c":"PlexModuleFile","l":"description"},{"p":"dev.plex.command.annotation","c":"CommandParameters","l":"description()"},{"p":"dev.plex.util.adapter","c":"LocalDateTimeDeserializer","l":"deserialize(JsonElement, Type, JsonDeserializationContext)","u":"deserialize(com.google.gson.JsonElement,java.lang.reflect.Type,com.google.gson.JsonDeserializationContext)"},{"p":"dev.plex.rank.enums","c":"Title","l":"DEV"},{"p":"dev.plex.util","c":"PlexUtils","l":"DEVELOPERS"},{"p":"dev.plex.module","c":"PlexModule","l":"disable()"},{"p":"dev.plex.module","c":"ModuleManager","l":"disableModules()"},{"p":"dev.plex.player","c":"PlexPlayer","l":"displayName()"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"doPunishment(PunishedPlayer, Punishment)","u":"doPunishment(dev.plex.player.PunishedPlayer,dev.plex.punishment.Punishment)"},{"p":"dev.plex.module","c":"PlexModule","l":"enable()"},{"p":"dev.plex.module","c":"ModuleManager","l":"enableModules()"},{"p":"dev.plex.punishment","c":"Punishment","l":"endDate"},{"p":"dev.plex.util","c":"PlexLog","l":"error(String, Object...)","u":"error(java.lang.String,java.lang.Object...)"},{"p":"dev.plex.command.impl","c":"CommandSpyCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command","c":"PlexCommand","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"AdminChatCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"AdminCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"AdminworldCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"AdventureCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"BanCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"CreativeCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"DebugCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"DeopAllCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"DeopCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"FlatlandsCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"FreezeCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"KickCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"ListCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"LocalSpawnCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"LockupCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"MasterbuilderworldCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"MuteCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"NameHistoryCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"OpAllCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"OpCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"PlexCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"PunishmentsCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"RankCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"RawSayCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"SpectatorCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"SurvivalCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"TagCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"TempbanCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"UnbanCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"UnfreezeCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"UnmuteCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"WorldCMD","l":"execute(CommandSender, Player, String[])","u":"execute(org.bukkit.command.CommandSender,org.bukkit.entity.Player,java.lang.String[])"},{"p":"dev.plex.rank.enums","c":"Rank","l":"EXECUTIVE"},{"p":"dev.plex.cache","c":"MongoPlayerData","l":"exists(UUID)","u":"exists(java.util.UUID)"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"exists(UUID)","u":"exists(java.util.UUID)"},{"p":"dev.plex.config","c":"Config","l":"file"},{"p":"dev.plex.world","c":"FlatChunkGenerator","l":"FlatChunkGenerator(int, BlockPopulator...)","u":"%3Cinit%3E(int,org.bukkit.generator.BlockPopulator...)"},{"p":"dev.plex.command.impl","c":"FlatlandsCMD","l":"FlatlandsCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"FREEZE"},{"p":"dev.plex.command.impl","c":"FreezeCMD","l":"FreezeCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"FreezeListener","l":"FreezeListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.world","c":"NoiseOptions","l":"frequency"},{"p":"dev.plex.punishment","c":"Punishment","l":"fromJson(String)","u":"fromJson(java.lang.String)"},{"p":"dev.plex.event","c":"PunishedPlayerFreezeEvent","l":"frozen"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"frozen"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"gameMode"},{"p":"dev.plex.listener.impl","c":"GameModeListener","l":"GameModeListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"GameModeUpdateEvent()","u":"%3Cinit%3E()"},{"p":"dev.plex.services.impl","c":"GameRuleService","l":"GameRuleService()","u":"%3Cinit%3E()"},{"p":"dev.plex.world","c":"CustomWorld","l":"generate()"},{"p":"dev.plex.punishment","c":"Punishment","l":"generateBanMessage(Punishment)","u":"generateBanMessage(dev.plex.punishment.Punishment)"},{"p":"dev.plex.world","c":"FlatChunkGenerator","l":"generateChunkData(World, Random, int, int, ChunkGenerator.BiomeGrid)","u":"generateChunkData(org.bukkit.World,java.util.Random,int,int,org.bukkit.generator.ChunkGenerator.BiomeGrid)"},{"p":"dev.plex.world","c":"NoiseChunkGenerator","l":"generateChunkData(World, Random, int, int, ChunkGenerator.BiomeGrid)","u":"generateChunkData(org.bukkit.World,java.util.Random,int,int,org.bukkit.generator.ChunkGenerator.BiomeGrid)"},{"p":"dev.plex.world","c":"OctaveChunkGenerator","l":"generateChunkData(World, Random, int, int, ChunkGenerator.BiomeGrid)","u":"generateChunkData(org.bukkit.World,java.util.Random,int,int,org.bukkit.generator.ChunkGenerator.BiomeGrid)"},{"p":"dev.plex.world","c":"CustomWorld","l":"generateConfigFlatWorld(String)","u":"generateConfigFlatWorld(java.lang.String)"},{"p":"dev.plex.rank","c":"RankManager","l":"generateDefaultRanks()"},{"p":"dev.plex.punishment","c":"Punishment","l":"generateIndefBanMessage(String)","u":"generateIndefBanMessage(java.lang.String)"},{"p":"dev.plex","c":"Plex","l":"generateWorlds()"},{"p":"dev.plex.world","c":"CustomWorld","l":"generator()"},{"p":"dev.plex","c":"Plex","l":"get()"},{"p":"dev.plex.util","c":"TimeUnit","l":"get()"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"getActiveBans()"},{"p":"dev.plex.admin","c":"AdminList","l":"getAllAdmins()"},{"p":"dev.plex.cache","c":"MongoPlayerData","l":"getByUUID(UUID)","u":"getByUUID(java.util.UUID)"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"getByUUID(UUID)","u":"getByUUID(java.util.UUID)"},{"p":"dev.plex.util","c":"PlexUtils","l":"getChatColorFromConfig(Config, ChatColor, String)","u":"getChatColorFromConfig(dev.plex.config.Config,org.bukkit.ChatColor,java.lang.String)"},{"p":"dev.plex.module","c":"PlexModule","l":"getCommand(String)","u":"getCommand(java.lang.String)"},{"p":"dev.plex.storage","c":"SQLConnection","l":"getCon()"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"getCurrentInventoryIndex(Inventory)","u":"getCurrentInventoryIndex(org.bukkit.inventory.Inventory)"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"getCurrentInventoryIndex(Inventory)","u":"getCurrentInventoryIndex(org.bukkit.inventory.Inventory)"},{"p":"dev.plex.storage","c":"MongoConnection","l":"getDatastore()"},{"p":"dev.plex.util","c":"PlexUtils","l":"getDateFromLong(long)"},{"p":"dev.plex.util","c":"PlexUtils","l":"getDateNow()"},{"p":"dev.plex.world","c":"CustomChunkGenerator","l":"getDefaultPopulators(World)","u":"getDefaultPopulators(org.bukkit.World)"},{"p":"dev.plex.util","c":"PlexUtils","l":"getFromName(String)","u":"getFromName(java.lang.String)"},{"p":"dev.plex.event","c":"AdminAddEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"AdminRemoveEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"PunishedPlayerFreezeEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"PunishedPlayerLockupEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"PunishedPlayerMuteEvent","l":"getHandlerList()"},{"p":"dev.plex.event","c":"AdminAddEvent","l":"getHandlers()"},{"p":"dev.plex.event","c":"AdminRemoveEvent","l":"getHandlers()"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"getHandlers()"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"getHandlers()"},{"p":"dev.plex.event","c":"PunishedPlayerFreezeEvent","l":"getHandlers()"},{"p":"dev.plex.event","c":"PunishedPlayerLockupEvent","l":"getHandlers()"},{"p":"dev.plex.event","c":"PunishedPlayerMuteEvent","l":"getHandlers()"},{"p":"dev.plex.util","c":"MojangUtils","l":"getInfo(String)","u":"getInfo(java.lang.String)"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"getInventory()"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"getInventory()"},{"p":"dev.plex.util.menu","c":"IMenu","l":"getInventory()"},{"p":"dev.plex.storage","c":"RedisConnection","l":"getJedis()"},{"p":"dev.plex.command","c":"PlexCommand","l":"getLevel()"},{"p":"dev.plex.rank","c":"RankManager","l":"getLoginMessage(PlexPlayer)","u":"getLoginMessage(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.command","c":"PlexCommand","l":"getMap()"},{"p":"dev.plex.util.menu","c":"AbstractMenu","l":"getName()"},{"p":"dev.plex.command","c":"PlexCommand","l":"getNonNullPlayer(String)","u":"getNonNullPlayer(java.lang.String)"},{"p":"dev.plex.command","c":"PlexCommand","l":"getNonNullWorld(String)","u":"getNonNullWorld(java.lang.String)"},{"p":"dev.plex.command","c":"PlexCommand","l":"getOfflinePlexPlayer(UUID)","u":"getOfflinePlexPlayer(java.util.UUID)"},{"p":"dev.plex.command","c":"PlexCommand","l":"getOnlinePlexPlayer(String)","u":"getOnlinePlexPlayer(java.lang.String)"},{"p":"dev.plex.cache","c":"DataUtils","l":"getPlayer(String)","u":"getPlayer(java.lang.String)"},{"p":"dev.plex.cache","c":"DataUtils","l":"getPlayer(UUID)","u":"getPlayer(java.util.UUID)"},{"p":"dev.plex.util","c":"PlexUtils","l":"getPlayerNameList()"},{"p":"dev.plex.command","c":"PlexCommand","l":"getPlexPlayer(Player)","u":"getPlexPlayer(org.bukkit.entity.Player)"},{"p":"dev.plex.cache","c":"PlayerCache","l":"getPlexPlayer(UUID)","u":"getPlexPlayer(java.util.UUID)"},{"p":"dev.plex.cache","c":"PlayerCache","l":"getPlexPlayerMap()"},{"p":"dev.plex.command","c":"PlexCommand","l":"getPlugin()"},{"p":"dev.plex.rank.enums","c":"Rank","l":"getPrefix()"},{"p":"dev.plex.rank.enums","c":"Title","l":"getPrefix()"},{"p":"dev.plex.rank","c":"RankManager","l":"getPrefix(PlexPlayer)","u":"getPrefix(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.cache","c":"PlayerCache","l":"getPunishedPlayer(UUID)","u":"getPunishedPlayer(java.util.UUID)"},{"p":"dev.plex.cache","c":"PlayerCache","l":"getPunishedPlayerMap()"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"getPunishments()"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"getPunishmentsFile()"},{"p":"dev.plex.player","c":"PlexPlayer","l":"getRankFromString()"},{"p":"dev.plex.rank","c":"RankManager","l":"getRankFromString(String)","u":"getRankFromString(java.lang.String)"},{"p":"dev.plex.command","c":"PlexCommand","l":"getUUID(CommandSender)","u":"getUUID(org.bukkit.command.CommandSender)"},{"p":"dev.plex.event","c":"AdminAddEvent","l":"handlers"},{"p":"dev.plex.event","c":"AdminRemoveEvent","l":"handlers"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"handlers"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"handlers"},{"p":"dev.plex.event","c":"PunishedPlayerFreezeEvent","l":"handlers"},{"p":"dev.plex.event","c":"PunishedPlayerLockupEvent","l":"handlers"},{"p":"dev.plex.event","c":"PunishedPlayerMuteEvent","l":"handlers"},{"p":"dev.plex.cache","c":"DataUtils","l":"hasPlayedBefore(UUID)","u":"hasPlayedBefore(java.util.UUID)"},{"p":"dev.plex.listener.impl","c":"ChatListener.PlexChatRenderer","l":"hasPrefix"},{"p":"dev.plex.world","c":"CustomChunkGenerator","l":"height"},{"p":"dev.plex.util","c":"TimeUnit","l":"HOUR"},{"p":"dev.plex.util","c":"PlexUtils","l":"hoursToSeconds(long)"},{"p":"dev.plex.player","c":"PlexPlayer","l":"id"},{"p":"dev.plex.rank","c":"RankManager","l":"importDefaultRanks()"},{"p":"dev.plex.rank.enums","c":"Rank","l":"IMPOSTOR"},{"p":"dev.plex.command.source","c":"RequiredCommandSource","l":"IN_GAME"},{"p":"dev.plex","c":"Plex","l":"indefBans"},{"p":"dev.plex.punishment","c":"PunishmentManager.IndefiniteBan","l":"IndefiniteBan()","u":"%3Cinit%3E()"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"indefiniteBans"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"INSERT"},{"p":"dev.plex.cache","c":"DataUtils","l":"insert(PlexPlayer)","u":"insert(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"insert(PlexPlayer)","u":"insert(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"insertPunishment(PunishedPlayer, Punishment)","u":"insertPunishment(dev.plex.player.PunishedPlayer,dev.plex.punishment.Punishment)"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"inventories"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"inventories"},{"p":"dev.plex.player","c":"PlexPlayer","l":"ips"},{"p":"dev.plex.punishment","c":"PunishmentManager.IndefiniteBan","l":"ips"},{"p":"dev.plex.punishment","c":"Punishment","l":"IPS"},{"p":"dev.plex.command","c":"PlexCommand","l":"isAdmin(CommandSender)","u":"isAdmin(org.bukkit.command.CommandSender)"},{"p":"dev.plex.command","c":"PlexCommand","l":"isAdmin(PlexPlayer)","u":"isAdmin(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.rank","c":"RankManager","l":"isAdmin(PlexPlayer)","u":"isAdmin(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.command","c":"PlexCommand","l":"isAdmin(String)","u":"isAdmin(java.lang.String)"},{"p":"dev.plex.services","c":"AbstractService","l":"isAsynchronous()"},{"p":"dev.plex.rank.enums","c":"Rank","l":"isAtLeast(Rank)","u":"isAtLeast(dev.plex.rank.enums.Rank)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"isBanned(PunishedPlayer)","u":"isBanned(dev.plex.player.PunishedPlayer)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"isBanned(UUID)","u":"isBanned(java.util.UUID)"},{"p":"dev.plex.command","c":"PlexCommand","l":"isConsole(CommandSender)","u":"isConsole(org.bukkit.command.CommandSender)"},{"p":"dev.plex.storage","c":"RedisConnection","l":"isEnabled()"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"isIndefIPBanned(String)","u":"isIndefIPBanned(java.lang.String)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"isIndefUserBanned(String)","u":"isIndefUserBanned(java.lang.String)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"isIndefUUIDBanned(UUID)","u":"isIndefUUIDBanned(java.util.UUID)"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"isNotEmpty(File)","u":"isNotEmpty(java.io.File)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"isNotEmpty(File)","u":"isNotEmpty(java.io.File)"},{"p":"dev.plex.util","c":"PlexUtils","l":"isPluginCMD(String, String)","u":"isPluginCMD(java.lang.String,java.lang.String)"},{"p":"dev.plex.services","c":"AbstractService","l":"isRepeating()"},{"p":"dev.plex.command","c":"PlexCommand","l":"isSeniorAdmin(CommandSender)","u":"isSeniorAdmin(org.bukkit.command.CommandSender)"},{"p":"dev.plex.rank","c":"RankManager","l":"isSeniorAdmin(PlexPlayer)","u":"isSeniorAdmin(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"issuePunishment(PunishedPlayer, Punishment)","u":"issuePunishment(dev.plex.player.PunishedPlayer,dev.plex.punishment.Punishment)"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"isValidInventory(Inventory)","u":"isValidInventory(org.bukkit.inventory.Inventory)"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"isValidInventory(Inventory)","u":"isValidInventory(org.bukkit.inventory.Inventory)"},{"p":"dev.plex.storage","c":"RedisConnection","l":"jedis"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"KICK"},{"p":"dev.plex.command.impl","c":"KickCMD","l":"KickCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command","c":"PlexCommand","l":"level"},{"p":"dev.plex.rank.enums","c":"Rank","l":"level"},{"p":"dev.plex.rank.enums","c":"Title","l":"level"},{"p":"dev.plex.command.annotation","c":"CommandPermissions","l":"level()"},{"p":"dev.plex.command.impl","c":"ListCMD","l":"ListCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.handlers","c":"ListenerHandler","l":"ListenerHandler()","u":"%3Cinit%3E()"},{"p":"dev.plex.module","c":"PlexModule","l":"listeners"},{"p":"dev.plex.config","c":"Config","l":"load()"},{"p":"dev.plex.module","c":"PlexModule","l":"load()"},{"p":"dev.plex.config","c":"Config","l":"load(boolean)"},{"p":"dev.plex.module","c":"ModuleManager","l":"loadAllModules()"},{"p":"dev.plex.module","c":"ModuleManager","l":"loadModules()"},{"p":"dev.plex.util","c":"AshconInfo.UsernameHistory","l":"localDateTime"},{"p":"dev.plex.util.adapter","c":"LocalDateTimeDeserializer","l":"LocalDateTimeDeserializer()","u":"%3Cinit%3E()"},{"p":"dev.plex.util.adapter","c":"LocalDateTimeSerializer","l":"LocalDateTimeSerializer()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"LocalSpawnCMD","l":"LocalSpawnCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.event","c":"PunishedPlayerLockupEvent","l":"lockedUp"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"lockedUp"},{"p":"dev.plex.command.impl","c":"LockupCMD","l":"LockupCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"PlexLog","l":"log(String, Object...)","u":"log(java.lang.String,java.lang.Object...)"},{"p":"dev.plex.module","c":"PlexModule","l":"logger"},{"p":"dev.plex.player","c":"PlexPlayer","l":"loginMessage"},{"p":"dev.plex.rank.enums","c":"Rank","l":"loginMessage"},{"p":"dev.plex.rank.enums","c":"Title","l":"loginMessage"},{"p":"dev.plex.module","c":"PlexModuleFile","l":"main"},{"p":"dev.plex.storage","c":"StorageType","l":"MARIADB"},{"p":"dev.plex.rank.enums","c":"Title","l":"MASTER_BUILDER"},{"p":"dev.plex.command.impl","c":"MasterbuilderworldCMD","l":"MasterbuilderworldCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command","c":"PlexCommand","l":"matches(String)","u":"matches(java.lang.String)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"mergeIndefiniteBans()"},{"p":"dev.plex.command","c":"PlexCommand","l":"messageComponent(String, Object...)","u":"messageComponent(java.lang.String,java.lang.Object...)"},{"p":"dev.plex.util","c":"PlexUtils","l":"messageComponent(String, Object...)","u":"messageComponent(java.lang.String,java.lang.Object...)"},{"p":"dev.plex","c":"Plex","l":"messages"},{"p":"dev.plex.command","c":"PlexCommand","l":"messageString(String, Object...)","u":"messageString(java.lang.String,java.lang.Object...)"},{"p":"dev.plex.util","c":"PlexUtils","l":"messageString(String, Object...)","u":"messageString(java.lang.String,java.lang.Object...)"},{"p":"dev.plex.util","c":"TimeUnit","l":"MINUTE"},{"p":"dev.plex.util","c":"PlexUtils","l":"minutesToSeconds(long)"},{"p":"dev.plex.command","c":"PlexCommand","l":"mmString(String)","u":"mmString(java.lang.String)"},{"p":"dev.plex.module.exception","c":"ModuleLoadException","l":"ModuleLoadException(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"dev.plex","c":"Plex","l":"moduleManager"},{"p":"dev.plex.module","c":"ModuleManager","l":"ModuleManager()","u":"%3Cinit%3E()"},{"p":"dev.plex.module","c":"ModuleManager","l":"modules"},{"p":"dev.plex","c":"Plex","l":"modulesFolder"},{"p":"dev.plex.util","c":"MojangUtils","l":"MojangUtils()","u":"%3Cinit%3E()"},{"p":"dev.plex","c":"Plex","l":"mongoConnection"},{"p":"dev.plex.storage","c":"MongoConnection","l":"MongoConnection()","u":"%3Cinit%3E()"},{"p":"dev.plex.storage","c":"StorageType","l":"MONGODB"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"mongoPlayerData"},{"p":"dev.plex","c":"Plex","l":"mongoPlayerData"},{"p":"dev.plex.cache","c":"MongoPlayerData","l":"MongoPlayerData()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"TimeUnit","l":"MONTH"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"MUTE"},{"p":"dev.plex.command.impl","c":"MuteCMD","l":"MuteCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.event","c":"PunishedPlayerMuteEvent","l":"muted"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"muted"},{"p":"dev.plex.config","c":"Config","l":"name"},{"p":"dev.plex.module","c":"PlexModuleFile","l":"name"},{"p":"dev.plex.player","c":"PlexPlayer","l":"name"},{"p":"dev.plex.util.menu","c":"AbstractMenu","l":"name"},{"p":"dev.plex.command.annotation","c":"CommandParameters","l":"name()"},{"p":"dev.plex.command.impl","c":"NameHistoryCMD","l":"NameHistoryCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.services.impl","c":"UpdateCheckerService","l":"newVersion"},{"p":"dev.plex.world","c":"NoiseChunkGenerator","l":"NoiseChunkGenerator(int, NoiseOptions, BlockPopulator...)","u":"%3Cinit%3E(int,dev.plex.world.NoiseOptions,org.bukkit.generator.BlockPopulator...)"},{"p":"dev.plex.world","c":"NoiseOptions","l":"NoiseOptions(int, int, double, double, boolean)","u":"%3Cinit%3E(int,int,double,double,boolean)"},{"p":"dev.plex.rank.enums","c":"Rank","l":"NONOP"},{"p":"dev.plex.world","c":"NoiseOptions","l":"normalized"},{"p":"dev.plex.world","c":"OctaveChunkGenerator","l":"OctaveChunkGenerator(int, OctaveOptions, BlockPopulator...)","u":"%3Cinit%3E(int,dev.plex.world.OctaveOptions,org.bukkit.generator.BlockPopulator...)"},{"p":"dev.plex.world","c":"OctaveOptions","l":"OctaveOptions(int, int, double, double, boolean, int)","u":"%3Cinit%3E(int,int,double,double,boolean,int)"},{"p":"dev.plex.world","c":"OctaveOptions","l":"octaves"},{"p":"dev.plex.listener.impl","c":"AdminListener","l":"onAdminAdd(AdminAddEvent)","u":"onAdminAdd(dev.plex.event.AdminAddEvent)"},{"p":"dev.plex.listener.impl","c":"AdminListener","l":"onAdminRemove(AdminRemoveEvent)","u":"onAdminRemove(dev.plex.event.AdminRemoveEvent)"},{"p":"dev.plex.listener.impl","c":"AdminListener","l":"onAdminSetRank(AdminSetRankEvent)","u":"onAdminSetRank(dev.plex.event.AdminSetRankEvent)"},{"p":"dev.plex.listener.impl","c":"WorldListener","l":"onBlockBreak(BlockBreakEvent)","u":"onBlockBreak(org.bukkit.event.block.BlockBreakEvent)"},{"p":"dev.plex.listener.impl","c":"WorldListener","l":"onBlockPlace(BlockPlaceEvent)","u":"onBlockPlace(org.bukkit.event.block.BlockPlaceEvent)"},{"p":"dev.plex.listener.impl","c":"ChatListener","l":"onChat(AsyncChatEvent)","u":"onChat(io.papermc.paper.event.player.AsyncChatEvent)"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"onClick(InventoryClickEvent)","u":"onClick(org.bukkit.event.inventory.InventoryClickEvent)"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"onClick(InventoryClickEvent)","u":"onClick(org.bukkit.event.inventory.InventoryClickEvent)"},{"p":"dev.plex.util.menu","c":"IMenu","l":"onClick(InventoryClickEvent)","u":"onClick(org.bukkit.event.inventory.InventoryClickEvent)"},{"p":"dev.plex","c":"Plex","l":"onDisable()"},{"p":"dev.plex","c":"Plex","l":"onEnable()"},{"p":"dev.plex.listener.impl","c":"WorldListener","l":"onEntitySpawn(EntitySpawnEvent)","u":"onEntitySpawn(org.bukkit.event.entity.EntitySpawnEvent)"},{"p":"dev.plex.listener.impl","c":"GameModeListener","l":"onGameModeUpdate(GameModeUpdateEvent)","u":"onGameModeUpdate(dev.plex.event.GameModeUpdateEvent)"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"onInventoryClick(InventoryClickEvent)","u":"onInventoryClick(org.bukkit.event.inventory.InventoryClickEvent)"},{"p":"dev.plex","c":"Plex","l":"onLoad()"},{"p":"dev.plex.listener.impl","c":"CommandListener","l":"onPlayerCommandPreprocess(PlayerCommandPreprocessEvent)","u":"onPlayerCommandPreprocess(org.bukkit.event.player.PlayerCommandPreprocessEvent)"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"onPlayerInventoryClose(InventoryCloseEvent)","u":"onPlayerInventoryClose(org.bukkit.event.inventory.InventoryCloseEvent)"},{"p":"dev.plex.listener.impl","c":"FreezeListener","l":"onPlayerMove(PlayerMoveEvent)","u":"onPlayerMove(org.bukkit.event.player.PlayerMoveEvent)"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"onPlayerSave(PlayerQuitEvent)","u":"onPlayerSave(org.bukkit.event.player.PlayerQuitEvent)"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"onPlayerSetup(PlayerJoinEvent)","u":"onPlayerSetup(org.bukkit.event.player.PlayerJoinEvent)"},{"p":"dev.plex.listener.impl","c":"BanListener","l":"onPreLogin(AsyncPlayerPreLoginEvent)","u":"onPreLogin(org.bukkit.event.player.AsyncPlayerPreLoginEvent)"},{"p":"dev.plex.listener.impl","c":"ServerListener","l":"onServerPing(PaperServerListPingEvent)","u":"onServerPing(com.destroystokyo.paper.event.server.PaperServerListPingEvent)"},{"p":"dev.plex.rank.enums","c":"Rank","l":"OP"},{"p":"dev.plex.command.impl","c":"OpAllCMD","l":"OpAllCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"OpCMD","l":"OpCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.util.menu","c":"IMenu","l":"openInv(Player)","u":"openInv(org.bukkit.entity.Player)"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"openInv(Player, int)","u":"openInv(org.bukkit.entity.Player,int)"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"openInv(Player, int)","u":"openInv(org.bukkit.entity.Player,int)"},{"p":"dev.plex.rank","c":"RankManager","l":"options"},{"p":"dev.plex.world","c":"NoiseChunkGenerator","l":"options"},{"p":"dev.plex.world","c":"OctaveChunkGenerator","l":"options"},{"p":"dev.plex.rank.enums","c":"Title","l":"OWNER"},{"p":"dev.plex.command","c":"PlexCommand","l":"params"},{"p":"dev.plex.util","c":"PlexUtils","l":"parseDateOffset(String...)","u":"parseDateOffset(java.lang.String...)"},{"p":"dev.plex.command.annotation","c":"CommandPermissions","l":"permission()"},{"p":"dev.plex.command","c":"PlexCommand","l":"perms"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"player"},{"p":"dev.plex.player","c":"PlexPlayer","l":"player"},{"p":"dev.plex.cache","c":"PlayerCache","l":"PlayerCache()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"PlayerListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.exception","c":"PlayerNotBannedException","l":"PlayerNotBannedException()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.exception","c":"PlayerNotFoundException","l":"PlayerNotFoundException()","u":"%3Cinit%3E()"},{"p":"dev.plex.module","c":"PlexModule","l":"plex"},{"p":"dev.plex","c":"Plex","l":"Plex()","u":"%3Cinit%3E()"},{"p":"dev.plex","c":"PlexBase","l":"PlexBase()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"ChatListener.PlexChatRenderer","l":"PlexChatRenderer()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"PlexCMD","l":"PlexCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command","c":"PlexCommand","l":"PlexCommand()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener","c":"PlexListener","l":"PlexListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"PlexLog","l":"PlexLog()","u":"%3Cinit%3E()"},{"p":"dev.plex.module","c":"PlexModule","l":"PlexModule()","u":"%3Cinit%3E()"},{"p":"dev.plex.module","c":"PlexModule","l":"plexModuleFile"},{"p":"dev.plex.module","c":"PlexModuleFile","l":"PlexModuleFile()","u":"%3Cinit%3E()"},{"p":"dev.plex.event","c":"AdminAddEvent","l":"plexPlayer"},{"p":"dev.plex.event","c":"AdminRemoveEvent","l":"plexPlayer"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"plexPlayer"},{"p":"dev.plex.player","c":"PlexPlayer","l":"PlexPlayer()","u":"%3Cinit%3E()"},{"p":"dev.plex.player","c":"PlexPlayer","l":"PlexPlayer(UUID)","u":"%3Cinit%3E(java.util.UUID)"},{"p":"dev.plex.cache","c":"PlayerCache","l":"plexPlayerMap"},{"p":"dev.plex.util","c":"PlexUtils","l":"PlexUtils()","u":"%3Cinit%3E()"},{"p":"dev.plex.command","c":"PlexCommand","l":"plugin"},{"p":"dev.plex.config","c":"Config","l":"plugin"},{"p":"dev.plex","c":"Plex","l":"plugin"},{"p":"dev.plex","c":"PlexBase","l":"plugin"},{"p":"dev.plex.world","c":"ConfigurationChunkGenerator","l":"plugin"},{"p":"dev.plex.world","c":"CustomWorld","l":"plugin"},{"p":"dev.plex.world","c":"CustomChunkGenerator","l":"populators"},{"p":"dev.plex.listener.impl","c":"ChatListener.PlexChatRenderer","l":"prefix"},{"p":"dev.plex.player","c":"PlexPlayer","l":"prefix"},{"p":"dev.plex.rank.enums","c":"Rank","l":"prefix"},{"p":"dev.plex.rank.enums","c":"Title","l":"prefix"},{"p":"dev.plex.punishment","c":"Punishment","l":"punished"},{"p":"dev.plex.event","c":"PunishedPlayerEvent","l":"punishedPlayer"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"punishedPlayer"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"PunishedPlayer(UUID)","u":"%3Cinit%3E(java.util.UUID)"},{"p":"dev.plex.event","c":"PunishedPlayerEvent","l":"PunishedPlayerEvent(PunishedPlayer)","u":"%3Cinit%3E(dev.plex.player.PunishedPlayer)"},{"p":"dev.plex.event","c":"PunishedPlayerFreezeEvent","l":"PunishedPlayerFreezeEvent(PunishedPlayer, boolean)","u":"%3Cinit%3E(dev.plex.player.PunishedPlayer,boolean)"},{"p":"dev.plex.event","c":"PunishedPlayerLockupEvent","l":"PunishedPlayerLockupEvent(PunishedPlayer, boolean)","u":"%3Cinit%3E(dev.plex.player.PunishedPlayer,boolean)"},{"p":"dev.plex.cache","c":"PlayerCache","l":"punishedPlayerMap"},{"p":"dev.plex.menu","c":"PunishedPlayerMenu","l":"PunishedPlayerMenu(PunishedPlayer)","u":"%3Cinit%3E(dev.plex.player.PunishedPlayer)"},{"p":"dev.plex.event","c":"PunishedPlayerMuteEvent","l":"PunishedPlayerMuteEvent(PunishedPlayer, boolean)","u":"%3Cinit%3E(dev.plex.player.PunishedPlayer,boolean)"},{"p":"dev.plex.punishment","c":"Punishment","l":"punishedUsername"},{"p":"dev.plex.punishment","c":"Punishment","l":"punisher"},{"p":"dev.plex.punishment","c":"Punishment","l":"Punishment(UUID, UUID)","u":"%3Cinit%3E(java.util.UUID,java.util.UUID)"},{"p":"dev.plex","c":"Plex","l":"punishmentManager"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"PunishmentManager()","u":"%3Cinit%3E()"},{"p":"dev.plex.menu","c":"PunishmentMenu","l":"PunishmentMenu()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"PunishmentsCMD","l":"PunishmentsCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"PunishmentType()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"PlexUtils","l":"RANDOM"},{"p":"dev.plex.util","c":"PlexUtils","l":"randomChatColor()"},{"p":"dev.plex.util","c":"PlexUtils","l":"randomNum()"},{"p":"dev.plex.util","c":"PlexUtils","l":"randomNum(int)"},{"p":"dev.plex.util","c":"PlexUtils","l":"randomNum(int, int)","u":"randomNum(int,int)"},{"p":"dev.plex.admin","c":"Admin","l":"rank"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"rank"},{"p":"dev.plex.player","c":"PlexPlayer","l":"rank"},{"p":"dev.plex.rank.enums","c":"Rank","l":"Rank(int, String, String, String)","u":"%3Cinit%3E(int,java.lang.String,java.lang.String,java.lang.String)"},{"p":"dev.plex.command.impl","c":"RankCMD","l":"RankCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"AdminCMD","l":"rankExists(String)","u":"rankExists(java.lang.String)"},{"p":"dev.plex","c":"Plex","l":"rankManager"},{"p":"dev.plex.rank","c":"RankManager","l":"RankManager()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"AshconInfo.Textures","l":"raw"},{"p":"dev.plex.command.impl","c":"RawSayCMD","l":"RawSayCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.rank.enums","c":"Rank","l":"readable"},{"p":"dev.plex.rank.enums","c":"Title","l":"readable"},{"p":"dev.plex.punishment","c":"Punishment","l":"reason"},{"p":"dev.plex","c":"Plex","l":"redisConnection"},{"p":"dev.plex.storage","c":"RedisConnection","l":"RedisConnection()","u":"%3Cinit%3E()"},{"p":"dev.plex.module","c":"PlexModule","l":"registerCommand(PlexCommand)","u":"registerCommand(dev.plex.command.PlexCommand)"},{"p":"dev.plex.module","c":"PlexModule","l":"registerListener(PlexListener)","u":"registerListener(dev.plex.listener.PlexListener)"},{"p":"dev.plex.services","c":"ServiceManager","l":"registerService(AbstractService)","u":"registerService(dev.plex.services.AbstractService)"},{"p":"dev.plex.util","c":"PlexUtils","l":"regxList"},{"p":"dev.plex","c":"Plex","l":"reloadPlayers()"},{"p":"dev.plex.command.impl","c":"TagCMD","l":"removeEvents(Component)","u":"removeEvents(net.kyori.adventure.text.Component)"},{"p":"dev.plex.admin","c":"AdminList","l":"removeFromCache(UUID)","u":"removeFromCache(java.util.UUID)"},{"p":"dev.plex.listener.impl","c":"ChatListener.PlexChatRenderer","l":"render(Player, Component, Component, Audience)","u":"render(org.bukkit.entity.Player,net.kyori.adventure.text.Component,net.kyori.adventure.text.Component,net.kyori.adventure.audience.Audience)"},{"p":"dev.plex.listener.impl","c":"ChatListener","l":"renderer"},{"p":"dev.plex.services","c":"AbstractService","l":"repeating"},{"p":"dev.plex.services.impl","c":"BanService","l":"repeatInSeconds()"},{"p":"dev.plex.services.impl","c":"GameRuleService","l":"repeatInSeconds()"},{"p":"dev.plex.services.impl","c":"UpdateCheckerService","l":"repeatInSeconds()"},{"p":"dev.plex.services","c":"IService","l":"repeatInSeconds()"},{"p":"dev.plex.command.source","c":"RequiredCommandSource","l":"RequiredCommandSource()","u":"%3Cinit%3E()"},{"p":"dev.plex.services.impl","c":"BanService","l":"run()"},{"p":"dev.plex.services.impl","c":"GameRuleService","l":"run()"},{"p":"dev.plex.services.impl","c":"UpdateCheckerService","l":"run()"},{"p":"dev.plex.services","c":"IService","l":"run()"},{"p":"dev.plex.storage","c":"RedisConnection","l":"runAsync(Consumer)","u":"runAsync(java.util.function.Consumer)"},{"p":"dev.plex.config","c":"Config","l":"save()"},{"p":"dev.plex.cache","c":"MongoPlayerData","l":"save(PlexPlayer)","u":"save(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.config","c":"Config","l":"saveDefault()"},{"p":"dev.plex.util","c":"TimeUnit","l":"SECOND"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"SELECT"},{"p":"dev.plex.command","c":"PlexCommand","l":"send(Audience, Component)","u":"send(net.kyori.adventure.audience.Audience,net.kyori.adventure.text.Component)"},{"p":"dev.plex.command","c":"PlexCommand","l":"send(Audience, String)","u":"send(net.kyori.adventure.audience.Audience,java.lang.String)"},{"p":"dev.plex.event","c":"AdminAddEvent","l":"sender"},{"p":"dev.plex.event","c":"AdminRemoveEvent","l":"sender"},{"p":"dev.plex.event","c":"AdminSetRankEvent","l":"sender"},{"p":"dev.plex.event","c":"GameModeUpdateEvent","l":"sender"},{"p":"dev.plex.rank.enums","c":"Rank","l":"SENIOR_ADMIN"},{"p":"dev.plex.util.adapter","c":"LocalDateTimeSerializer","l":"serialize(LocalDateTime, Type, JsonSerializationContext)","u":"serialize(java.time.LocalDateTime,java.lang.reflect.Type,com.google.gson.JsonSerializationContext)"},{"p":"dev.plex.listener.impl","c":"ServerListener","l":"ServerListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.services","c":"ServiceManager","l":"serviceCount()"},{"p":"dev.plex","c":"Plex","l":"serviceManager"},{"p":"dev.plex.services","c":"ServiceManager","l":"ServiceManager()","u":"%3Cinit%3E()"},{"p":"dev.plex.services","c":"ServiceManager","l":"services"},{"p":"dev.plex.util","c":"PlexUtils","l":"setBlocks(Location, Location, Material)","u":"setBlocks(org.bukkit.Location,org.bukkit.Location,org.bukkit.Material)"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"setFrozen(boolean)"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"setLockedUp(boolean)"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"setMuted(boolean)"},{"p":"dev.plex.util","c":"AshconInfo.SkinData","l":"signature"},{"p":"dev.plex.util","c":"PlexUtils","l":"simpleGET(String)","u":"simpleGET(java.lang.String)"},{"p":"dev.plex.util","c":"AshconInfo.SkinData","l":"SkinData()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"AshconInfo.Textures","l":"slim"},{"p":"dev.plex.command.annotation","c":"CommandPermissions","l":"source()"},{"p":"dev.plex.command.impl","c":"SpectatorCMD","l":"SpectatorCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex","c":"Plex","l":"sqlConnection"},{"p":"dev.plex.storage","c":"SQLConnection","l":"SQLConnection()","u":"%3Cinit%3E()"},{"p":"dev.plex.storage","c":"StorageType","l":"SQLITE"},{"p":"dev.plex.listener.impl","c":"PlayerListener","l":"sqlPlayerData"},{"p":"dev.plex","c":"Plex","l":"sqlPlayerData"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"SQLPlayerData()","u":"%3Cinit%3E()"},{"p":"dev.plex.services","c":"ServiceManager","l":"startServices()"},{"p":"dev.plex","c":"Plex","l":"storageType"},{"p":"dev.plex.storage","c":"StorageType","l":"StorageType()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"SurvivalCMD","l":"SurvivalCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex","c":"Plex","l":"system"},{"p":"dev.plex.command.impl","c":"AdminCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"AdventureCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"BanCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"CreativeCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"DebugCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"DeopCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"FreezeCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"LockupCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"MuteCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"NameHistoryCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"OpCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"PlexCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"PunishmentsCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"SpectatorCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"SurvivalCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"TempbanCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"UnbanCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"UnfreezeCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"UnmuteCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"WorldCMD","l":"tabComplete(CommandSender, String, String[])","u":"tabComplete(org.bukkit.command.CommandSender,java.lang.String,java.lang.String[])"},{"p":"dev.plex.command.impl","c":"TagCMD","l":"TagCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"TempbanCMD","l":"TempbanCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"PlexUtils","l":"testConnections()"},{"p":"dev.plex.util","c":"AshconInfo","l":"textures"},{"p":"dev.plex.util","c":"AshconInfo.Textures","l":"Textures()","u":"%3Cinit%3E()"},{"p":"dev.plex.util","c":"TimeUnit","l":"time"},{"p":"dev.plex.util","c":"TimeUnit","l":"TimeUnit(long)","u":"%3Cinit%3E(long)"},{"p":"dev.plex.rank.enums","c":"Title","l":"Title(int, String, String, String)","u":"%3Cinit%3E(int,java.lang.String,java.lang.String,java.lang.String)"},{"p":"dev.plex.punishment","c":"Punishment","l":"toJSON()"},{"p":"dev.plex.rank.enums","c":"Rank","l":"toJSON()"},{"p":"dev.plex.rank.enums","c":"Title","l":"toJSON()"},{"p":"dev.plex.punishment","c":"Punishment","l":"type"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"unban(Punishment)","u":"unban(dev.plex.punishment.Punishment)"},{"p":"dev.plex.punishment","c":"PunishmentManager","l":"unban(UUID)","u":"unban(java.util.UUID)"},{"p":"dev.plex.command.impl","c":"UnbanCMD","l":"UnbanCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.impl","c":"UnfreezeCMD","l":"UnfreezeCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.module","c":"ModuleManager","l":"unloadModules()"},{"p":"dev.plex.command.impl","c":"UnmuteCMD","l":"UnmuteCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.module","c":"PlexModule","l":"unregisterCommand(PlexCommand)","u":"unregisterCommand(dev.plex.command.PlexCommand)"},{"p":"dev.plex.module","c":"PlexModule","l":"unregisterListener(PlexListener)","u":"unregisterListener(dev.plex.listener.PlexListener)"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"UPDATE"},{"p":"dev.plex.cache","c":"DataUtils","l":"update(PlexPlayer)","u":"update(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.cache","c":"MongoPlayerData","l":"update(PlexPlayer)","u":"update(dev.plex.player.PlexPlayer)"},{"p":"dev.plex.cache","c":"SQLPlayerData","l":"update(PlexPlayer)","u":"update(dev.plex.player.PlexPlayer)"},{"p":"dev.plex","c":"Plex","l":"updateChecker"},{"p":"dev.plex.util","c":"UpdateChecker","l":"UpdateChecker()","u":"%3Cinit%3E()"},{"p":"dev.plex.services.impl","c":"UpdateCheckerService","l":"UpdateCheckerService()","u":"%3Cinit%3E()"},{"p":"dev.plex.command.annotation","c":"CommandParameters","l":"usage()"},{"p":"dev.plex.command","c":"PlexCommand","l":"usage()"},{"p":"dev.plex.command","c":"PlexCommand","l":"usage(String)","u":"usage(java.lang.String)"},{"p":"dev.plex.util","c":"AshconInfo","l":"username"},{"p":"dev.plex.util","c":"AshconInfo.UsernameHistory","l":"username"},{"p":"dev.plex.util","c":"AshconInfo","l":"usernameHistories"},{"p":"dev.plex.util","c":"AshconInfo.UsernameHistory","l":"UsernameHistory()","u":"%3Cinit%3E()"},{"p":"dev.plex.punishment","c":"PunishmentManager.IndefiniteBan","l":"usernames"},{"p":"dev.plex.admin","c":"Admin","l":"uuid"},{"p":"dev.plex.player","c":"PlexPlayer","l":"uuid"},{"p":"dev.plex.player","c":"PunishedPlayer","l":"uuid"},{"p":"dev.plex.util","c":"AshconInfo","l":"uuid"},{"p":"dev.plex.punishment","c":"PunishmentManager.IndefiniteBan","l":"uuids"},{"p":"dev.plex.util","c":"AshconInfo.SkinData","l":"value"},{"p":"dev.plex.command.source","c":"RequiredCommandSource","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"dev.plex.rank.enums","c":"Rank","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"dev.plex.rank.enums","c":"Title","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"dev.plex.storage","c":"StorageType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"dev.plex.util","c":"TimeUnit","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"dev.plex.command.source","c":"RequiredCommandSource","l":"values()"},{"p":"dev.plex.punishment","c":"PunishmentType","l":"values()"},{"p":"dev.plex.rank.enums","c":"Rank","l":"values()"},{"p":"dev.plex.rank.enums","c":"Title","l":"values()"},{"p":"dev.plex.storage","c":"StorageType","l":"values()"},{"p":"dev.plex.util","c":"TimeUnit","l":"values()"},{"p":"dev.plex.player","c":"PlexPlayer","l":"vanished"},{"p":"dev.plex.util","c":"PlexUtils","l":"verify(String)","u":"verify(java.lang.String)"},{"p":"dev.plex.module","c":"PlexModuleFile","l":"version"},{"p":"dev.plex.util","c":"TimeUnit","l":"WEEK"},{"p":"dev.plex.command.impl","c":"WorldCMD","l":"WorldCMD()","u":"%3Cinit%3E()"},{"p":"dev.plex.listener.impl","c":"WorldListener","l":"WorldListener()","u":"%3Cinit%3E()"},{"p":"dev.plex.world","c":"NoiseOptions","l":"x"},{"p":"dev.plex.world","c":"NoiseOptions","l":"y"},{"p":"dev.plex.util","c":"TimeUnit","l":"YEAR"}];updateSearchResults(); \ No newline at end of file diff --git a/static/javadocs/overview-summary.html b/static/javadocs/overview-summary.html index d2e7c09..2cccea4 100644 --- a/static/javadocs/overview-summary.html +++ b/static/javadocs/overview-summary.html @@ -2,7 +2,7 @@ -Plex 0.7 API +Plex 0.8 API diff --git a/static/javadocs/overview-tree.html b/static/javadocs/overview-tree.html index 316c20b..28f5904 100644 --- a/static/javadocs/overview-tree.html +++ b/static/javadocs/overview-tree.html @@ -2,7 +2,7 @@ -Class Hierarchy (Plex 0.7 API) +Class Hierarchy (Plex 0.8 API) @@ -64,6 +64,8 @@ loadScripts(document, 'script');
  • dev.plex.listener,
  • dev.plex.listener.impl,
  • dev.plex.menu,
  • +
  • dev.plex.module,
  • +
  • dev.plex.module.exception,
  • dev.plex.player,
  • dev.plex.punishment,
  • dev.plex.rank,
  • @@ -89,7 +91,6 @@ loadScripts(document, 'script');
  • dev.plex.admin.Admin
  • -
  • dev.plex.admin.AdminList
  • dev.plex.util.AshconInfo
  • dev.plex.util.AshconInfo.SkinData
  • dev.plex.util.AshconInfo.Textures
  • @@ -195,6 +196,7 @@ loadScripts(document, 'script'); +
  • dev.plex.module.ModuleManager
  • dev.plex.util.MojangUtils
  • dev.plex.cache.MongoPlayerData
  • dev.plex.world.NoiseOptions @@ -212,6 +214,7 @@ loadScripts(document, 'script');
  • dev.plex.services.impl.UpdateCheckerService
  • +
  • dev.plex.admin.AdminList
  • dev.plex.handlers.CommandHandler
  • dev.plex.storage.MongoConnection
  • dev.plex.listener.PlexListener (implements org.bukkit.event.Listener) @@ -236,6 +239,8 @@ loadScripts(document, 'script');
  • dev.plex.util.UpdateChecker
  • +
  • dev.plex.module.PlexModule
  • +
  • dev.plex.module.PlexModuleFile
  • dev.plex.player.PlexPlayer
  • org.bukkit.plugin.PluginBase (implements org.bukkit.plugin.Plugin)
      @@ -247,6 +252,7 @@ loadScripts(document, 'script');
  • dev.plex.punishment.Punishment
  • +
  • dev.plex.punishment.PunishmentManager.IndefiniteBan
  • dev.plex.rank.RankManager
  • dev.plex.services.ServiceManager
  • dev.plex.cache.SQLPlayerData
  • @@ -259,6 +265,7 @@ loadScripts(document, 'script');
  • dev.plex.command.exception.CommandFailException
  • dev.plex.command.exception.ConsoleMustDefinePlayerException
  • dev.plex.command.exception.ConsoleOnlyException
  • +
  • dev.plex.module.exception.ModuleLoadException
  • dev.plex.command.exception.PlayerNotBannedException
  • dev.plex.command.exception.PlayerNotFoundException
  • diff --git a/static/javadocs/package-search-index.js b/static/javadocs/package-search-index.js index 58fe894..19a27ad 100644 --- a/static/javadocs/package-search-index.js +++ b/static/javadocs/package-search-index.js @@ -1 +1 @@ -packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"dev.plex"},{"l":"dev.plex.admin"},{"l":"dev.plex.cache"},{"l":"dev.plex.command"},{"l":"dev.plex.command.annotation"},{"l":"dev.plex.command.exception"},{"l":"dev.plex.command.impl"},{"l":"dev.plex.command.source"},{"l":"dev.plex.config"},{"l":"dev.plex.event"},{"l":"dev.plex.handlers"},{"l":"dev.plex.listener"},{"l":"dev.plex.listener.impl"},{"l":"dev.plex.menu"},{"l":"dev.plex.player"},{"l":"dev.plex.punishment"},{"l":"dev.plex.rank"},{"l":"dev.plex.rank.enums"},{"l":"dev.plex.services"},{"l":"dev.plex.services.impl"},{"l":"dev.plex.storage"},{"l":"dev.plex.util"},{"l":"dev.plex.util.adapter"},{"l":"dev.plex.util.menu"},{"l":"dev.plex.world"}];updateSearchResults(); \ No newline at end of file +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"dev.plex"},{"l":"dev.plex.admin"},{"l":"dev.plex.cache"},{"l":"dev.plex.command"},{"l":"dev.plex.command.annotation"},{"l":"dev.plex.command.exception"},{"l":"dev.plex.command.impl"},{"l":"dev.plex.command.source"},{"l":"dev.plex.config"},{"l":"dev.plex.event"},{"l":"dev.plex.handlers"},{"l":"dev.plex.listener"},{"l":"dev.plex.listener.impl"},{"l":"dev.plex.menu"},{"l":"dev.plex.module"},{"l":"dev.plex.module.exception"},{"l":"dev.plex.player"},{"l":"dev.plex.punishment"},{"l":"dev.plex.rank"},{"l":"dev.plex.rank.enums"},{"l":"dev.plex.services"},{"l":"dev.plex.services.impl"},{"l":"dev.plex.storage"},{"l":"dev.plex.util"},{"l":"dev.plex.util.adapter"},{"l":"dev.plex.util.menu"},{"l":"dev.plex.world"}];updateSearchResults(); \ No newline at end of file diff --git a/static/javadocs/serialized-form.html b/static/javadocs/serialized-form.html index 18c1aa2..478af1f 100644 --- a/static/javadocs/serialized-form.html +++ b/static/javadocs/serialized-form.html @@ -2,7 +2,7 @@ -Serialized Form (Plex 0.7 API) +Serialized Form (Plex 0.8 API) @@ -87,6 +87,19 @@ loadScripts(document, 'script'); +
  • +
    +

    Package dev.plex.module.exception

    + +
    +
  • diff --git a/static/javadocs/type-search-index.js b/static/javadocs/type-search-index.js index ece58ba..f7f5145 100644 --- a/static/javadocs/type-search-index.js +++ b/static/javadocs/type-search-index.js @@ -1 +1 @@ -typeSearchIndex = [{"p":"dev.plex.util.menu","l":"AbstractMenu"},{"p":"dev.plex.services","l":"AbstractService"},{"p":"dev.plex.admin","l":"Admin"},{"p":"dev.plex.event","l":"AdminAddEvent"},{"p":"dev.plex.command.impl","l":"AdminChatCMD"},{"p":"dev.plex.command.impl","l":"AdminCMD"},{"p":"dev.plex.admin","l":"AdminList"},{"p":"dev.plex.listener.impl","l":"AdminListener"},{"p":"dev.plex.event","l":"AdminRemoveEvent"},{"p":"dev.plex.event","l":"AdminSetRankEvent"},{"p":"dev.plex.command.impl","l":"AdminworldCMD"},{"p":"dev.plex.command.impl","l":"AdventureCMD"},{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"dev.plex.util","l":"AshconInfo"},{"p":"dev.plex.command.impl","l":"BanCMD"},{"p":"dev.plex.listener.impl","l":"BanListener"},{"p":"dev.plex.services.impl","l":"BanService"},{"p":"dev.plex.world","l":"BlockMapChunkGenerator"},{"p":"dev.plex.listener.impl","l":"ChatListener"},{"p":"dev.plex.command.exception","l":"CommandFailException"},{"p":"dev.plex.handlers","l":"CommandHandler"},{"p":"dev.plex.listener.impl","l":"CommandListener"},{"p":"dev.plex.command.annotation","l":"CommandParameters"},{"p":"dev.plex.command.annotation","l":"CommandPermissions"},{"p":"dev.plex.command.impl","l":"CommandSpyCMD"},{"p":"dev.plex.config","l":"Config"},{"p":"dev.plex.world","l":"ConfigurationChunkGenerator"},{"p":"dev.plex.command.exception","l":"ConsoleMustDefinePlayerException"},{"p":"dev.plex.command.exception","l":"ConsoleOnlyException"},{"p":"dev.plex.command.impl","l":"CreativeCMD"},{"p":"dev.plex.world","l":"CustomChunkGenerator"},{"p":"dev.plex.world","l":"CustomWorld"},{"p":"dev.plex.cache","l":"DataUtils"},{"p":"dev.plex.command.impl","l":"DebugCMD"},{"p":"dev.plex.command.impl","l":"DeopAllCMD"},{"p":"dev.plex.command.impl","l":"DeopCMD"},{"p":"dev.plex.world","l":"FlatChunkGenerator"},{"p":"dev.plex.command.impl","l":"FlatlandsCMD"},{"p":"dev.plex.command.impl","l":"FreezeCMD"},{"p":"dev.plex.listener.impl","l":"FreezeListener"},{"p":"dev.plex.listener.impl","l":"GameModeListener"},{"p":"dev.plex.event","l":"GameModeUpdateEvent"},{"p":"dev.plex.services.impl","l":"GameRuleService"},{"p":"dev.plex.util.menu","l":"IMenu"},{"p":"dev.plex.services","l":"IService"},{"p":"dev.plex.command.impl","l":"KickCMD"},{"p":"dev.plex.command.impl","l":"ListCMD"},{"p":"dev.plex.handlers","l":"ListenerHandler"},{"p":"dev.plex.util.adapter","l":"LocalDateTimeDeserializer"},{"p":"dev.plex.util.adapter","l":"LocalDateTimeSerializer"},{"p":"dev.plex.command.impl","l":"LocalSpawnCMD"},{"p":"dev.plex.command.impl","l":"LockupCMD"},{"p":"dev.plex.command.impl","l":"MasterbuilderworldCMD"},{"p":"dev.plex.util","l":"MojangUtils"},{"p":"dev.plex.storage","l":"MongoConnection"},{"p":"dev.plex.cache","l":"MongoPlayerData"},{"p":"dev.plex.command.impl","l":"MuteCMD"},{"p":"dev.plex.command.impl","l":"NameHistoryCMD"},{"p":"dev.plex.world","l":"NoiseChunkGenerator"},{"p":"dev.plex.world","l":"NoiseOptions"},{"p":"dev.plex.world","l":"OctaveChunkGenerator"},{"p":"dev.plex.world","l":"OctaveOptions"},{"p":"dev.plex.command.impl","l":"OpAllCMD"},{"p":"dev.plex.command.impl","l":"OpCMD"},{"p":"dev.plex.cache","l":"PlayerCache"},{"p":"dev.plex.listener.impl","l":"PlayerListener"},{"p":"dev.plex.command.exception","l":"PlayerNotBannedException"},{"p":"dev.plex.command.exception","l":"PlayerNotFoundException"},{"p":"dev.plex","l":"Plex"},{"p":"dev.plex","l":"PlexBase"},{"p":"dev.plex.listener.impl","l":"ChatListener.PlexChatRenderer"},{"p":"dev.plex.command.impl","l":"PlexCMD"},{"p":"dev.plex.command","l":"PlexCommand"},{"p":"dev.plex.listener","l":"PlexListener"},{"p":"dev.plex.util","l":"PlexLog"},{"p":"dev.plex.player","l":"PlexPlayer"},{"p":"dev.plex.util","l":"PlexUtils"},{"p":"dev.plex.player","l":"PunishedPlayer"},{"p":"dev.plex.event","l":"PunishedPlayerEvent"},{"p":"dev.plex.event","l":"PunishedPlayerFreezeEvent"},{"p":"dev.plex.event","l":"PunishedPlayerLockupEvent"},{"p":"dev.plex.menu","l":"PunishedPlayerMenu"},{"p":"dev.plex.event","l":"PunishedPlayerMuteEvent"},{"p":"dev.plex.punishment","l":"Punishment"},{"p":"dev.plex.punishment","l":"PunishmentManager"},{"p":"dev.plex.menu","l":"PunishmentMenu"},{"p":"dev.plex.command.impl","l":"PunishmentsCMD"},{"p":"dev.plex.punishment","l":"PunishmentType"},{"p":"dev.plex.rank.enums","l":"Rank"},{"p":"dev.plex.command.impl","l":"RankCMD"},{"p":"dev.plex.rank","l":"RankManager"},{"p":"dev.plex.command.impl","l":"RawSayCMD"},{"p":"dev.plex.storage","l":"RedisConnection"},{"p":"dev.plex.command.source","l":"RequiredCommandSource"},{"p":"dev.plex.listener.impl","l":"ServerListener"},{"p":"dev.plex.services","l":"ServiceManager"},{"p":"dev.plex.util","l":"AshconInfo.SkinData"},{"p":"dev.plex.command.impl","l":"SpectatorCMD"},{"p":"dev.plex.storage","l":"SQLConnection"},{"p":"dev.plex.cache","l":"SQLPlayerData"},{"p":"dev.plex.storage","l":"StorageType"},{"p":"dev.plex.command.impl","l":"SurvivalCMD"},{"p":"dev.plex.command.impl","l":"TagCMD"},{"p":"dev.plex.command.impl","l":"TempbanCMD"},{"p":"dev.plex.util","l":"AshconInfo.Textures"},{"p":"dev.plex.util","l":"TimeUnit"},{"p":"dev.plex.rank.enums","l":"Title"},{"p":"dev.plex.command.impl","l":"UnbanCMD"},{"p":"dev.plex.command.impl","l":"UnfreezeCMD"},{"p":"dev.plex.command.impl","l":"UnmuteCMD"},{"p":"dev.plex.util","l":"UpdateChecker"},{"p":"dev.plex.services.impl","l":"UpdateCheckerService"},{"p":"dev.plex.util","l":"AshconInfo.UsernameHistory"},{"p":"dev.plex.command.impl","l":"WorldCMD"},{"p":"dev.plex.listener.impl","l":"WorldListener"}];updateSearchResults(); \ No newline at end of file +typeSearchIndex = [{"p":"dev.plex.util.menu","l":"AbstractMenu"},{"p":"dev.plex.services","l":"AbstractService"},{"p":"dev.plex.admin","l":"Admin"},{"p":"dev.plex.event","l":"AdminAddEvent"},{"p":"dev.plex.command.impl","l":"AdminChatCMD"},{"p":"dev.plex.command.impl","l":"AdminCMD"},{"p":"dev.plex.admin","l":"AdminList"},{"p":"dev.plex.listener.impl","l":"AdminListener"},{"p":"dev.plex.event","l":"AdminRemoveEvent"},{"p":"dev.plex.event","l":"AdminSetRankEvent"},{"p":"dev.plex.command.impl","l":"AdminworldCMD"},{"p":"dev.plex.command.impl","l":"AdventureCMD"},{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"dev.plex.util","l":"AshconInfo"},{"p":"dev.plex.command.impl","l":"BanCMD"},{"p":"dev.plex.listener.impl","l":"BanListener"},{"p":"dev.plex.services.impl","l":"BanService"},{"p":"dev.plex.world","l":"BlockMapChunkGenerator"},{"p":"dev.plex.listener.impl","l":"ChatListener"},{"p":"dev.plex.command.exception","l":"CommandFailException"},{"p":"dev.plex.handlers","l":"CommandHandler"},{"p":"dev.plex.listener.impl","l":"CommandListener"},{"p":"dev.plex.command.annotation","l":"CommandParameters"},{"p":"dev.plex.command.annotation","l":"CommandPermissions"},{"p":"dev.plex.command.impl","l":"CommandSpyCMD"},{"p":"dev.plex.config","l":"Config"},{"p":"dev.plex.world","l":"ConfigurationChunkGenerator"},{"p":"dev.plex.command.exception","l":"ConsoleMustDefinePlayerException"},{"p":"dev.plex.command.exception","l":"ConsoleOnlyException"},{"p":"dev.plex.command.impl","l":"CreativeCMD"},{"p":"dev.plex.world","l":"CustomChunkGenerator"},{"p":"dev.plex.world","l":"CustomWorld"},{"p":"dev.plex.cache","l":"DataUtils"},{"p":"dev.plex.command.impl","l":"DebugCMD"},{"p":"dev.plex.command.impl","l":"DeopAllCMD"},{"p":"dev.plex.command.impl","l":"DeopCMD"},{"p":"dev.plex.world","l":"FlatChunkGenerator"},{"p":"dev.plex.command.impl","l":"FlatlandsCMD"},{"p":"dev.plex.command.impl","l":"FreezeCMD"},{"p":"dev.plex.listener.impl","l":"FreezeListener"},{"p":"dev.plex.listener.impl","l":"GameModeListener"},{"p":"dev.plex.event","l":"GameModeUpdateEvent"},{"p":"dev.plex.services.impl","l":"GameRuleService"},{"p":"dev.plex.util.menu","l":"IMenu"},{"p":"dev.plex.punishment","l":"PunishmentManager.IndefiniteBan"},{"p":"dev.plex.services","l":"IService"},{"p":"dev.plex.command.impl","l":"KickCMD"},{"p":"dev.plex.command.impl","l":"ListCMD"},{"p":"dev.plex.handlers","l":"ListenerHandler"},{"p":"dev.plex.util.adapter","l":"LocalDateTimeDeserializer"},{"p":"dev.plex.util.adapter","l":"LocalDateTimeSerializer"},{"p":"dev.plex.command.impl","l":"LocalSpawnCMD"},{"p":"dev.plex.command.impl","l":"LockupCMD"},{"p":"dev.plex.command.impl","l":"MasterbuilderworldCMD"},{"p":"dev.plex.module.exception","l":"ModuleLoadException"},{"p":"dev.plex.module","l":"ModuleManager"},{"p":"dev.plex.util","l":"MojangUtils"},{"p":"dev.plex.storage","l":"MongoConnection"},{"p":"dev.plex.cache","l":"MongoPlayerData"},{"p":"dev.plex.command.impl","l":"MuteCMD"},{"p":"dev.plex.command.impl","l":"NameHistoryCMD"},{"p":"dev.plex.world","l":"NoiseChunkGenerator"},{"p":"dev.plex.world","l":"NoiseOptions"},{"p":"dev.plex.world","l":"OctaveChunkGenerator"},{"p":"dev.plex.world","l":"OctaveOptions"},{"p":"dev.plex.command.impl","l":"OpAllCMD"},{"p":"dev.plex.command.impl","l":"OpCMD"},{"p":"dev.plex.cache","l":"PlayerCache"},{"p":"dev.plex.listener.impl","l":"PlayerListener"},{"p":"dev.plex.command.exception","l":"PlayerNotBannedException"},{"p":"dev.plex.command.exception","l":"PlayerNotFoundException"},{"p":"dev.plex","l":"Plex"},{"p":"dev.plex","l":"PlexBase"},{"p":"dev.plex.listener.impl","l":"ChatListener.PlexChatRenderer"},{"p":"dev.plex.command.impl","l":"PlexCMD"},{"p":"dev.plex.command","l":"PlexCommand"},{"p":"dev.plex.listener","l":"PlexListener"},{"p":"dev.plex.util","l":"PlexLog"},{"p":"dev.plex.module","l":"PlexModule"},{"p":"dev.plex.module","l":"PlexModuleFile"},{"p":"dev.plex.player","l":"PlexPlayer"},{"p":"dev.plex.util","l":"PlexUtils"},{"p":"dev.plex.player","l":"PunishedPlayer"},{"p":"dev.plex.event","l":"PunishedPlayerEvent"},{"p":"dev.plex.event","l":"PunishedPlayerFreezeEvent"},{"p":"dev.plex.event","l":"PunishedPlayerLockupEvent"},{"p":"dev.plex.menu","l":"PunishedPlayerMenu"},{"p":"dev.plex.event","l":"PunishedPlayerMuteEvent"},{"p":"dev.plex.punishment","l":"Punishment"},{"p":"dev.plex.punishment","l":"PunishmentManager"},{"p":"dev.plex.menu","l":"PunishmentMenu"},{"p":"dev.plex.command.impl","l":"PunishmentsCMD"},{"p":"dev.plex.punishment","l":"PunishmentType"},{"p":"dev.plex.rank.enums","l":"Rank"},{"p":"dev.plex.command.impl","l":"RankCMD"},{"p":"dev.plex.rank","l":"RankManager"},{"p":"dev.plex.command.impl","l":"RawSayCMD"},{"p":"dev.plex.storage","l":"RedisConnection"},{"p":"dev.plex.command.source","l":"RequiredCommandSource"},{"p":"dev.plex.listener.impl","l":"ServerListener"},{"p":"dev.plex.services","l":"ServiceManager"},{"p":"dev.plex.util","l":"AshconInfo.SkinData"},{"p":"dev.plex.command.impl","l":"SpectatorCMD"},{"p":"dev.plex.storage","l":"SQLConnection"},{"p":"dev.plex.cache","l":"SQLPlayerData"},{"p":"dev.plex.storage","l":"StorageType"},{"p":"dev.plex.command.impl","l":"SurvivalCMD"},{"p":"dev.plex.command.impl","l":"TagCMD"},{"p":"dev.plex.command.impl","l":"TempbanCMD"},{"p":"dev.plex.util","l":"AshconInfo.Textures"},{"p":"dev.plex.util","l":"TimeUnit"},{"p":"dev.plex.rank.enums","l":"Title"},{"p":"dev.plex.command.impl","l":"UnbanCMD"},{"p":"dev.plex.command.impl","l":"UnfreezeCMD"},{"p":"dev.plex.command.impl","l":"UnmuteCMD"},{"p":"dev.plex.util","l":"UpdateChecker"},{"p":"dev.plex.services.impl","l":"UpdateCheckerService"},{"p":"dev.plex.util","l":"AshconInfo.UsernameHistory"},{"p":"dev.plex.command.impl","l":"WorldCMD"},{"p":"dev.plex.listener.impl","l":"WorldListener"}];updateSearchResults(); \ No newline at end of file