├── .github └── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── THIRD-PARTY.txt ├── api ├── pom.xml └── src │ └── main │ └── java │ └── me │ └── filoghost │ └── chestcommands │ └── api │ ├── ChestCommandsAPI.java │ ├── ClickHandler.java │ ├── ClickableIcon.java │ ├── ConfigurableIcon.java │ ├── Icon.java │ ├── Menu.java │ ├── MenuView.java │ ├── PlaceholderReplacer.java │ ├── StaticIcon.java │ └── internal │ └── BackendAPI.java ├── checkstyle ├── checkstyle.xml ├── header.txt └── suppressions.xml ├── javadoc ├── bukkit-1.8 │ └── package-list └── jetbrains-annotations │ └── package-list ├── licenses ├── LICENSE-EisenNBT.txt ├── LICENSE-UpdateChecker.txt └── LICENSE-bStats.txt ├── plugin ├── pom.xml └── src │ ├── main │ ├── java │ │ └── me │ │ │ └── filoghost │ │ │ └── chestcommands │ │ │ ├── ChestCommands.java │ │ │ ├── DefaultBackendAPI.java │ │ │ ├── Permissions.java │ │ │ ├── action │ │ │ ├── Action.java │ │ │ ├── BroadcastAction.java │ │ │ ├── ChangeServerAction.java │ │ │ ├── ConsoleCommandAction.java │ │ │ ├── DisabledAction.java │ │ │ ├── DragonBarAction.java │ │ │ ├── GiveItemAction.java │ │ │ ├── GiveMoneyAction.java │ │ │ ├── OpCommandAction.java │ │ │ ├── OpenMenuAction.java │ │ │ ├── PlaySoundAction.java │ │ │ ├── PlayerCommandAction.java │ │ │ └── SendMessageAction.java │ │ │ ├── attribute │ │ │ ├── ActionsAttribute.java │ │ │ ├── AmountAttribute.java │ │ │ ├── AttributeErrorHandler.java │ │ │ ├── BannerColorAttribute.java │ │ │ ├── BannerPatternsAttribute.java │ │ │ ├── ClickPermissionAttribute.java │ │ │ ├── ClickPermissionMessageAttribute.java │ │ │ ├── DurabilityAttribute.java │ │ │ ├── EnchantmentsAttribute.java │ │ │ ├── ExpLevelsAttribute.java │ │ │ ├── IconAttribute.java │ │ │ ├── KeepOpenAttribute.java │ │ │ ├── LeatherColorAttribute.java │ │ │ ├── LoreAttribute.java │ │ │ ├── MaterialAttribute.java │ │ │ ├── NBTDataAttribute.java │ │ │ ├── NameAttribute.java │ │ │ ├── PositionAttribute.java │ │ │ ├── PriceAttribute.java │ │ │ ├── RequiredItemsAttribute.java │ │ │ ├── SkullOwnerAttribute.java │ │ │ └── ViewPermissionAttribute.java │ │ │ ├── command │ │ │ └── CommandHandler.java │ │ │ ├── config │ │ │ ├── ConfigManager.java │ │ │ ├── CustomPlaceholders.java │ │ │ ├── Lang.java │ │ │ └── Settings.java │ │ │ ├── hook │ │ │ ├── BarAPIHook.java │ │ │ ├── BungeeCordHook.java │ │ │ ├── PlaceholderAPIHook.java │ │ │ ├── PluginHook.java │ │ │ └── VaultEconomyHook.java │ │ │ ├── icon │ │ │ ├── APIConfigurableIcon.java │ │ │ ├── APIStaticIcon.java │ │ │ ├── BaseConfigurableIcon.java │ │ │ ├── ClickResult.java │ │ │ ├── IconPermission.java │ │ │ ├── InternalConfigurableIcon.java │ │ │ ├── RefreshableIcon.java │ │ │ └── requirement │ │ │ │ ├── RequiredExpLevel.java │ │ │ │ ├── RequiredMoney.java │ │ │ │ ├── Requirement.java │ │ │ │ └── item │ │ │ │ ├── InventoryTakeHelper.java │ │ │ │ ├── RemainingItem.java │ │ │ │ ├── RequiredItem.java │ │ │ │ └── RequiredItems.java │ │ │ ├── inventory │ │ │ ├── ArrayGrid.java │ │ │ ├── DefaultMenuView.java │ │ │ ├── Grid.java │ │ │ ├── InventoryGrid.java │ │ │ └── MenuInventoryHolder.java │ │ │ ├── legacy │ │ │ ├── Backup.java │ │ │ ├── UpgradeExecutorException.java │ │ │ ├── UpgradeList.java │ │ │ ├── UpgradesDoneRegistry.java │ │ │ ├── UpgradesExecutor.java │ │ │ ├── upgrade │ │ │ │ ├── RegexReplacer.java │ │ │ │ ├── RegexUpgradeTask.java │ │ │ │ ├── Upgrade.java │ │ │ │ ├── UpgradeTask.java │ │ │ │ ├── UpgradeTaskException.java │ │ │ │ └── YamlUpgradeTask.java │ │ │ └── v4_0 │ │ │ │ ├── V4_0_LangUpgradeTask.java │ │ │ │ ├── V4_0_MenuConfigUpgradeTask.java │ │ │ │ ├── V4_0_MenuRawTextFileUpgradeTask.java │ │ │ │ ├── V4_0_PlaceholdersUpgradeTask.java │ │ │ │ └── V4_0_SettingsUpgradeTask.java │ │ │ ├── listener │ │ │ ├── CommandListener.java │ │ │ ├── InventoryListener.java │ │ │ ├── JoinListener.java │ │ │ └── SignListener.java │ │ │ ├── logging │ │ │ ├── ErrorPrintInfo.java │ │ │ ├── Errors.java │ │ │ ├── MessagePartJoiner.java │ │ │ └── PrintableErrorCollector.java │ │ │ ├── menu │ │ │ ├── APIMenu.java │ │ │ ├── BaseMenu.java │ │ │ ├── InternalMenu.java │ │ │ └── MenuManager.java │ │ │ ├── parsing │ │ │ ├── ActionParser.java │ │ │ ├── EnchantmentParser.java │ │ │ ├── ItemMetaParser.java │ │ │ ├── ItemStackParser.java │ │ │ ├── MaterialParser.java │ │ │ ├── NumberParser.java │ │ │ ├── ParseException.java │ │ │ ├── icon │ │ │ │ ├── AttributeType.java │ │ │ │ └── IconSettings.java │ │ │ └── menu │ │ │ │ ├── ClickType.java │ │ │ │ ├── LoadedMenu.java │ │ │ │ ├── MenuOpenItem.java │ │ │ │ ├── MenuParser.java │ │ │ │ ├── MenuSettings.java │ │ │ │ └── MenuSettingsPath.java │ │ │ ├── placeholder │ │ │ ├── DefaultPlaceholder.java │ │ │ ├── Placeholder.java │ │ │ ├── PlaceholderCache.java │ │ │ ├── PlaceholderManager.java │ │ │ ├── PlaceholderRegistry.java │ │ │ ├── PlaceholderString.java │ │ │ ├── PlaceholderStringList.java │ │ │ ├── StaticPlaceholder.java │ │ │ └── scanner │ │ │ │ ├── PlaceholderMatch.java │ │ │ │ └── PlaceholderScanner.java │ │ │ ├── task │ │ │ └── TickingTask.java │ │ │ └── util │ │ │ ├── Utils.java │ │ │ └── nbt │ │ │ ├── NBTByte.java │ │ │ ├── NBTByteArray.java │ │ │ ├── NBTCompound.java │ │ │ ├── NBTDouble.java │ │ │ ├── NBTFloat.java │ │ │ ├── NBTInt.java │ │ │ ├── NBTIntArray.java │ │ │ ├── NBTList.java │ │ │ ├── NBTLong.java │ │ │ ├── NBTLongArray.java │ │ │ ├── NBTShort.java │ │ │ ├── NBTString.java │ │ │ ├── NBTTag.java │ │ │ ├── NBTType.java │ │ │ └── parser │ │ │ ├── MojangsonParseException.java │ │ │ └── MojangsonParser.java │ └── resources │ │ ├── custom-placeholders.yml │ │ ├── menu │ │ └── example.yml │ │ └── plugin.yml │ └── test │ └── java │ └── me │ └── filoghost │ └── chestcommands │ ├── api │ ├── ConfigurableIconTest.java │ └── MenuTest.java │ └── test │ └── BukkitMocks.java └── pom.xml /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/THIRD-PARTY.txt -------------------------------------------------------------------------------- /api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/api/pom.xml -------------------------------------------------------------------------------- /api/src/main/java/me/filoghost/chestcommands/api/ChestCommandsAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/api/src/main/java/me/filoghost/chestcommands/api/ChestCommandsAPI.java -------------------------------------------------------------------------------- /api/src/main/java/me/filoghost/chestcommands/api/ClickHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/api/src/main/java/me/filoghost/chestcommands/api/ClickHandler.java -------------------------------------------------------------------------------- /api/src/main/java/me/filoghost/chestcommands/api/ClickableIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/api/src/main/java/me/filoghost/chestcommands/api/ClickableIcon.java -------------------------------------------------------------------------------- /api/src/main/java/me/filoghost/chestcommands/api/ConfigurableIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/api/src/main/java/me/filoghost/chestcommands/api/ConfigurableIcon.java -------------------------------------------------------------------------------- /api/src/main/java/me/filoghost/chestcommands/api/Icon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/api/src/main/java/me/filoghost/chestcommands/api/Icon.java -------------------------------------------------------------------------------- /api/src/main/java/me/filoghost/chestcommands/api/Menu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/api/src/main/java/me/filoghost/chestcommands/api/Menu.java -------------------------------------------------------------------------------- /api/src/main/java/me/filoghost/chestcommands/api/MenuView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/api/src/main/java/me/filoghost/chestcommands/api/MenuView.java -------------------------------------------------------------------------------- /api/src/main/java/me/filoghost/chestcommands/api/PlaceholderReplacer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/api/src/main/java/me/filoghost/chestcommands/api/PlaceholderReplacer.java -------------------------------------------------------------------------------- /api/src/main/java/me/filoghost/chestcommands/api/StaticIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/api/src/main/java/me/filoghost/chestcommands/api/StaticIcon.java -------------------------------------------------------------------------------- /api/src/main/java/me/filoghost/chestcommands/api/internal/BackendAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/api/src/main/java/me/filoghost/chestcommands/api/internal/BackendAPI.java -------------------------------------------------------------------------------- /checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/checkstyle/checkstyle.xml -------------------------------------------------------------------------------- /checkstyle/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/checkstyle/header.txt -------------------------------------------------------------------------------- /checkstyle/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/checkstyle/suppressions.xml -------------------------------------------------------------------------------- /javadoc/bukkit-1.8/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/javadoc/bukkit-1.8/package-list -------------------------------------------------------------------------------- /javadoc/jetbrains-annotations/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/javadoc/jetbrains-annotations/package-list -------------------------------------------------------------------------------- /licenses/LICENSE-EisenNBT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/licenses/LICENSE-EisenNBT.txt -------------------------------------------------------------------------------- /licenses/LICENSE-UpdateChecker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/licenses/LICENSE-UpdateChecker.txt -------------------------------------------------------------------------------- /licenses/LICENSE-bStats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/licenses/LICENSE-bStats.txt -------------------------------------------------------------------------------- /plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/pom.xml -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/ChestCommands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/ChestCommands.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/DefaultBackendAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/DefaultBackendAPI.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/Permissions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/Permissions.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/Action.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/Action.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/BroadcastAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/BroadcastAction.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/ChangeServerAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/ChangeServerAction.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/ConsoleCommandAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/ConsoleCommandAction.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/DisabledAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/DisabledAction.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/DragonBarAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/DragonBarAction.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/GiveItemAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/GiveItemAction.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/GiveMoneyAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/GiveMoneyAction.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/OpCommandAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/OpCommandAction.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/OpenMenuAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/OpenMenuAction.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/PlaySoundAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/PlaySoundAction.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/PlayerCommandAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/PlayerCommandAction.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/action/SendMessageAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/action/SendMessageAction.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/ActionsAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/ActionsAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/AmountAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/AmountAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/AttributeErrorHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/AttributeErrorHandler.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/BannerColorAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/BannerColorAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/BannerPatternsAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/BannerPatternsAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/ClickPermissionAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/ClickPermissionAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/ClickPermissionMessageAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/ClickPermissionMessageAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/DurabilityAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/DurabilityAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/EnchantmentsAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/EnchantmentsAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/ExpLevelsAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/ExpLevelsAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/IconAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/IconAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/KeepOpenAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/KeepOpenAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/LeatherColorAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/LeatherColorAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/LoreAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/LoreAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/MaterialAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/MaterialAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/NBTDataAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/NBTDataAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/NameAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/NameAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/PositionAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/PositionAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/PriceAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/PriceAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/RequiredItemsAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/RequiredItemsAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/SkullOwnerAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/SkullOwnerAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/attribute/ViewPermissionAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/attribute/ViewPermissionAttribute.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/command/CommandHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/command/CommandHandler.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/config/ConfigManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/config/ConfigManager.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/config/CustomPlaceholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/config/CustomPlaceholders.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/config/Lang.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/config/Lang.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/config/Settings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/config/Settings.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/hook/BarAPIHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/hook/BarAPIHook.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/hook/BungeeCordHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/hook/BungeeCordHook.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/hook/PlaceholderAPIHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/hook/PlaceholderAPIHook.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/hook/PluginHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/hook/PluginHook.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/hook/VaultEconomyHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/hook/VaultEconomyHook.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/APIConfigurableIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/APIConfigurableIcon.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/APIStaticIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/APIStaticIcon.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/BaseConfigurableIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/BaseConfigurableIcon.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/ClickResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/ClickResult.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/IconPermission.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/IconPermission.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/InternalConfigurableIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/InternalConfigurableIcon.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/RefreshableIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/RefreshableIcon.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/RequiredExpLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/RequiredExpLevel.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/RequiredMoney.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/RequiredMoney.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/Requirement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/Requirement.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/item/InventoryTakeHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/item/InventoryTakeHelper.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/item/RemainingItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/item/RemainingItem.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/item/RequiredItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/item/RequiredItem.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/item/RequiredItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/icon/requirement/item/RequiredItems.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/inventory/ArrayGrid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/inventory/ArrayGrid.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/inventory/DefaultMenuView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/inventory/DefaultMenuView.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/inventory/Grid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/inventory/Grid.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/inventory/InventoryGrid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/inventory/InventoryGrid.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/inventory/MenuInventoryHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/inventory/MenuInventoryHolder.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/Backup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/Backup.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/UpgradeExecutorException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/UpgradeExecutorException.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/UpgradeList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/UpgradeList.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/UpgradesDoneRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/UpgradesDoneRegistry.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/UpgradesExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/UpgradesExecutor.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/upgrade/RegexReplacer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/upgrade/RegexReplacer.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/upgrade/RegexUpgradeTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/upgrade/RegexUpgradeTask.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/upgrade/Upgrade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/upgrade/Upgrade.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/upgrade/UpgradeTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/upgrade/UpgradeTask.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/upgrade/UpgradeTaskException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/upgrade/UpgradeTaskException.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/upgrade/YamlUpgradeTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/upgrade/YamlUpgradeTask.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/v4_0/V4_0_LangUpgradeTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/v4_0/V4_0_LangUpgradeTask.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/v4_0/V4_0_MenuConfigUpgradeTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/v4_0/V4_0_MenuConfigUpgradeTask.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/v4_0/V4_0_MenuRawTextFileUpgradeTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/v4_0/V4_0_MenuRawTextFileUpgradeTask.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/v4_0/V4_0_PlaceholdersUpgradeTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/v4_0/V4_0_PlaceholdersUpgradeTask.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/legacy/v4_0/V4_0_SettingsUpgradeTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/legacy/v4_0/V4_0_SettingsUpgradeTask.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/listener/CommandListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/listener/CommandListener.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/listener/InventoryListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/listener/InventoryListener.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/listener/JoinListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/listener/JoinListener.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/listener/SignListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/listener/SignListener.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/logging/ErrorPrintInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/logging/ErrorPrintInfo.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/logging/Errors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/logging/Errors.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/logging/MessagePartJoiner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/logging/MessagePartJoiner.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/logging/PrintableErrorCollector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/logging/PrintableErrorCollector.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/menu/APIMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/menu/APIMenu.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/menu/BaseMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/menu/BaseMenu.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/menu/InternalMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/menu/InternalMenu.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/menu/MenuManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/menu/MenuManager.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/ActionParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/ActionParser.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/EnchantmentParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/EnchantmentParser.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/ItemMetaParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/ItemMetaParser.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/ItemStackParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/ItemStackParser.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/MaterialParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/MaterialParser.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/NumberParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/NumberParser.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/ParseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/ParseException.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/icon/AttributeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/icon/AttributeType.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/icon/IconSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/icon/IconSettings.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/menu/ClickType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/menu/ClickType.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/menu/LoadedMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/menu/LoadedMenu.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/menu/MenuOpenItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/menu/MenuOpenItem.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/menu/MenuParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/menu/MenuParser.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/menu/MenuSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/menu/MenuSettings.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/parsing/menu/MenuSettingsPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/parsing/menu/MenuSettingsPath.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/placeholder/DefaultPlaceholder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/placeholder/DefaultPlaceholder.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/placeholder/Placeholder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/placeholder/Placeholder.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/placeholder/PlaceholderCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/placeholder/PlaceholderCache.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/placeholder/PlaceholderManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/placeholder/PlaceholderManager.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/placeholder/PlaceholderRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/placeholder/PlaceholderRegistry.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/placeholder/PlaceholderString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/placeholder/PlaceholderString.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/placeholder/PlaceholderStringList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/placeholder/PlaceholderStringList.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/placeholder/StaticPlaceholder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/placeholder/StaticPlaceholder.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/placeholder/scanner/PlaceholderMatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/placeholder/scanner/PlaceholderMatch.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/placeholder/scanner/PlaceholderScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/placeholder/scanner/PlaceholderScanner.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/task/TickingTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/task/TickingTask.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/Utils.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTByte.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTByte.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTByteArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTByteArray.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTCompound.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTCompound.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTDouble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTDouble.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTFloat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTFloat.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTInt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTInt.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTIntArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTIntArray.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTList.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTLong.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTLong.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTLongArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTLongArray.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTShort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTShort.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTString.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTTag.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/NBTType.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/parser/MojangsonParseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/parser/MojangsonParseException.java -------------------------------------------------------------------------------- /plugin/src/main/java/me/filoghost/chestcommands/util/nbt/parser/MojangsonParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/java/me/filoghost/chestcommands/util/nbt/parser/MojangsonParser.java -------------------------------------------------------------------------------- /plugin/src/main/resources/custom-placeholders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/resources/custom-placeholders.yml -------------------------------------------------------------------------------- /plugin/src/main/resources/menu/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/resources/menu/example.yml -------------------------------------------------------------------------------- /plugin/src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/main/resources/plugin.yml -------------------------------------------------------------------------------- /plugin/src/test/java/me/filoghost/chestcommands/api/ConfigurableIconTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/test/java/me/filoghost/chestcommands/api/ConfigurableIconTest.java -------------------------------------------------------------------------------- /plugin/src/test/java/me/filoghost/chestcommands/api/MenuTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/test/java/me/filoghost/chestcommands/api/MenuTest.java -------------------------------------------------------------------------------- /plugin/src/test/java/me/filoghost/chestcommands/test/BukkitMocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/plugin/src/test/java/me/filoghost/chestcommands/test/BukkitMocks.java -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filoghost/ChestCommands/HEAD/pom.xml --------------------------------------------------------------------------------