├── .github └── workflows │ └── compile.yml ├── .gitignore ├── .libs ├── BungeePerms-3.0-dev-80.jar ├── UltraPermissionsAPI-5.5.2.jar ├── glowstone.jar └── perworldinventory-kt-2.3.2.jar ├── InvSee++_Clear_Plugin ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── clear │ │ ├── ClearPlugin.java │ │ ├── ClearTabCompleter.java │ │ ├── Convert.java │ │ ├── EnderClearExecutor.java │ │ ├── InvClearExecutor.java │ │ ├── ItemType.java │ │ └── RemoveUtil.java │ └── resources │ ├── config.yml │ └── plugin.yml ├── InvSee++_Clone_Plugin ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── clone │ │ ├── ClonePlugin.java │ │ ├── EnderCloneExecutor.java │ │ ├── InvCloneExecutor.java │ │ ├── Responses.java │ │ └── TargetUtil.java │ └── resources │ └── plugin.yml ├── InvSee++_Common ├── .gitignore ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ ├── api │ │ ├── CreationOptions.java │ │ ├── EnderSpectatorInventory.java │ │ ├── EnderSpectatorInventoryView.java │ │ ├── Exempt.java │ │ ├── InvseeAPI.java │ │ ├── InvseePlusPlus.java │ │ ├── MainSpectatorInventory.java │ │ ├── MainSpectatorInventoryView.java │ │ ├── OfflinePlayerProvider.java │ │ ├── Scheduler.java │ │ ├── SpectatorInventory.java │ │ ├── SpectatorInventoryView.java │ │ ├── Title.java │ │ ├── event │ │ │ ├── SpectatorInventoryOfflineCreatedEvent.java │ │ │ └── SpectatorInventorySaveEvent.java │ │ ├── logging │ │ │ ├── Difference.java │ │ │ ├── DifferenceTracker.java │ │ │ ├── ItemType.java │ │ │ ├── LogGranularity.java │ │ │ ├── LogOptions.java │ │ │ ├── LogOutput.java │ │ │ └── LogTarget.java │ │ ├── placeholder │ │ │ ├── PlaceholderGroup.java │ │ │ └── PlaceholderPalette.java │ │ ├── resolve │ │ │ ├── NameElectroidAPIStrategy.java │ │ │ ├── NameInMemoryStrategy.java │ │ │ ├── NameMojangAPIStrategy.java │ │ │ ├── NameOnlinePlayerStrategy.java │ │ │ ├── NamePermissionPluginStrategy.java │ │ │ ├── NameResolveStrategy.java │ │ │ ├── UUIDBungeeCordStrategy.java │ │ │ ├── UUIDElectroidAPIStrategy.java │ │ │ ├── UUIDInMemoryStrategy.java │ │ │ ├── UUIDMojangAPIStrategy.java │ │ │ ├── UUIDOfflineModeStrategy.java │ │ │ ├── UUIDOfflinePlayerStrategy.java │ │ │ ├── UUIDOnlinePlayerStrategy.java │ │ │ ├── UUIDPaperCacheStrategy.java │ │ │ ├── UUIDPermissionPluginStrategy.java │ │ │ └── UUIDResolveStrategy.java │ │ ├── response │ │ │ ├── AbstractNotCreatedReason.java │ │ │ ├── ImplementationFault.java │ │ │ ├── InventoryNotCreated.java │ │ │ ├── InventoryOpenEventCancelled.java │ │ │ ├── NotCreatedReason.java │ │ │ ├── NotOpenedReason.java │ │ │ ├── OfflineSupportDisabled.java │ │ │ ├── OpenResponse.java │ │ │ ├── SaveResponse.java │ │ │ ├── SpectateResponse.java │ │ │ ├── TargetDoesNotExist.java │ │ │ ├── TargetHasExemptPermission.java │ │ │ ├── UnknownReason.java │ │ │ └── UnknownTarget.java │ │ ├── target │ │ │ ├── GameProfileTarget.java │ │ │ ├── PlayerTarget.java │ │ │ ├── Target.java │ │ │ ├── UniqueIdTarget.java │ │ │ └── UsernameTarget.java │ │ └── template │ │ │ ├── EnderChestSlot.java │ │ │ ├── Mirror.java │ │ │ └── PlayerInventorySlot.java │ │ └── internal │ │ ├── CompletedEmpty.java │ │ ├── ConstantTitle.java │ │ ├── EventHelper.java │ │ ├── FakePersistentDataAdapterContext.java │ │ ├── FakePersistentDataContainer.java │ │ ├── InvseePlatform.java │ │ ├── LogRecord.java │ │ ├── NBTConstants.java │ │ ├── NamesAndUUIDs.java │ │ ├── OpenSpectatorsCache.java │ │ ├── PlayerFileHelper.java │ │ ├── TestingCompatLayer.java │ │ ├── inventory │ │ ├── AbstractNmsInventory.java │ │ ├── EnderInventory.java │ │ ├── MainInventory.java │ │ ├── Personal.java │ │ ├── ShallowCopy.java │ │ ├── StandardSpectatorInventory.java │ │ └── Wrapper.java │ │ ├── placeholder │ │ ├── Placeholders.java │ │ └── SimplePlaceholderPalette.java │ │ ├── template │ │ ├── EnderChestMirror.java │ │ └── PlayerInventoryMirror.java │ │ └── version │ │ ├── CraftbukkitMappingsVersion.java │ │ ├── GlowstoneGameVersion.java │ │ ├── LegacyVersions.java │ │ ├── MinecraftPlatform.java │ │ ├── MinecraftVersion.java │ │ ├── ServerSoftware.java │ │ └── SupportedServerSoftware.java │ └── test │ └── java │ └── com │ └── janboerman │ └── invsee │ └── spigot │ ├── logging │ └── DifferenceTest.java │ └── template │ └── MirrorTest.java ├── InvSee++_Give_Common ├── .gitignore ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── janboerman │ └── invsee │ └── spigot │ └── addon │ └── give │ └── common │ ├── Convert.java │ ├── GiveApi.java │ ├── ItemType.java │ └── NeditImpl.java ├── InvSee++_Give_Platforms ├── .gitignore ├── Give_Impl_1_12_2_R1 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_12_R1 │ │ └── GiveImpl.java ├── Give_Impl_1_16_5_R3 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_16_R3 │ │ └── GiveImpl.java ├── Give_Impl_1_17_1_R1 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_17_1_R1 │ │ └── GiveImpl.java ├── Give_Impl_1_18_2_R2 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_18_2_R2 │ │ └── GiveImpl.java ├── Give_Impl_1_19_4_R3 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_19_4_R3 │ │ └── GiveImpl.java ├── Give_Impl_1_20_1_R1 │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_20_1_R1 │ │ └── GiveImpl.java ├── Give_Impl_1_20_4_R3 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_20_4_R3 │ │ └── GiveImpl.java ├── Give_Impl_1_20_6_R4 │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_20_6_R4 │ │ ├── GiveImpl.java │ │ ├── ItemParser.java │ │ └── WithComponents.java ├── Give_Impl_1_21_1_R1 │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_21_1_R1 │ │ ├── GiveImpl.java │ │ ├── ItemParser.java │ │ └── WithComponents.java ├── Give_Impl_1_21_4_R3 │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_21_4_R3 │ │ ├── GiveImpl.java │ │ ├── ItemParser.java │ │ └── WithComponents.java ├── Give_Impl_1_21_5_R4 │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_21_5_R4 │ │ ├── GiveImpl.java │ │ ├── ItemParser.java │ │ └── WithComponents.java ├── Give_Impl_1_21_7_R5 │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_21_7_R5 │ │ ├── GiveImpl.java │ │ ├── ItemParser.java │ │ ├── PaperSupport.java │ │ └── WithComponents.java ├── Give_Impl_1_21_9_R6 │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_21_9_R6 │ │ ├── GiveImpl.java │ │ ├── ItemParser.java │ │ ├── PaperSupport.java │ │ └── WithComponents.java ├── Give_Impl_1_21_R1 │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_21_R1 │ │ ├── GiveImpl.java │ │ ├── ItemParser.java │ │ └── WithComponents.java ├── Give_Impl_1_8_8_R3 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ └── impl_1_8_R3 │ │ └── GiveImpl.java └── Give_Impl_Glowstone │ ├── .gitignore │ ├── pom.xml │ └── src │ └── main │ └── java │ └── com │ └── janboerman │ └── invsee │ └── spigot │ └── addon │ └── give │ └── glowstone │ ├── GiveImpl.java │ └── GlowstoneHacks.java ├── InvSee++_Give_Plugin ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── addon │ │ └── give │ │ ├── EnderGiveExecutor.java │ │ ├── GivePlugin.java │ │ ├── GiveTabCompleter.java │ │ ├── InvGiveExecutor.java │ │ ├── ItemQueue.java │ │ ├── ItemQueueManager.java │ │ ├── JoinListener.java │ │ ├── Setup.java │ │ └── cmd │ │ ├── ArgParser.java │ │ └── ArgType.java │ └── resources │ ├── config.yml │ └── plugin.yml ├── InvSee++_MultiverseInventories ├── .gitignore ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── janboerman │ └── invsee │ └── spigot │ └── multiverseinventories │ ├── MultiverseInventoriesHook.java │ ├── MultiverseInventoriesSeeApi.java │ ├── MviCommandArgs.java │ └── ProfileId.java ├── InvSee++_PerWorldInventory ├── .gitignore ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── janboerman │ └── invsee │ └── spigot │ └── perworldinventory │ ├── FakeAttributeInstance.java │ ├── FakeInventory.java │ ├── FakePlayer.java │ ├── FakePlayerInventory.java │ ├── FakePlayerProfile.java │ ├── PerWorldInventoryHook.java │ ├── PerWorldInventorySeeApi.java │ ├── ProfileId.java │ └── PwiCommandArgs.java ├── InvSee++_Platforms ├── .gitignore ├── Impl_1_12_2_R1 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_12_R1 │ │ ├── BukkitInventoryView.java │ │ ├── EnderBukkitInventory.java │ │ ├── EnderBukkitInventoryView.java │ │ ├── EnderNmsContainer.java │ │ ├── EnderNmsInventory.java │ │ ├── FakeCraftPlayer.java │ │ ├── FakeEntityHuman.java │ │ ├── FakeEntityPlayer.java │ │ ├── HybridServerSupport.java │ │ ├── InaccessibleSlot.java │ │ ├── InvseeImpl.java │ │ ├── KnownPlayersProvider.java │ │ ├── MainBukkitInventory.java │ │ ├── MainBukkitInventoryView.java │ │ ├── MainNmsContainer.java │ │ ├── MainNmsInventory.java │ │ ├── NameSearchSaveFilesStrategy.java │ │ ├── PersonalSlot.java │ │ ├── Placeholders.java │ │ ├── Slots.java │ │ └── UUIDSearchSaveFilesStrategy.java ├── Impl_1_16_5_R3 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_16_R3 │ │ ├── BukkitInventoryView.java │ │ ├── EnderBukkitInventory.java │ │ ├── EnderBukkitInventoryView.java │ │ ├── EnderNmsContainer.java │ │ ├── EnderNmsInventory.java │ │ ├── FakeCraftPlayer.java │ │ ├── FakeEntityHuman.java │ │ ├── FakeEntityPlayer.java │ │ ├── HybridServerSupport.java │ │ ├── InaccessibleSlot.java │ │ ├── InvseeImpl.java │ │ ├── KnownPlayersProvider.java │ │ ├── MainBukkitInventory.java │ │ ├── MainBukkitInventoryView.java │ │ ├── MainNmsContainer.java │ │ ├── MainNmsInventory.java │ │ ├── NameSearchSaveFilesStrategy.java │ │ ├── PersonalSlot.java │ │ ├── Placeholders.java │ │ ├── Slots.java │ │ └── UUIDSearchSaveFilesStrategy.java ├── Impl_1_17_1_R1 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_17_1_R1 │ │ ├── BukkitInventoryView.java │ │ ├── CursorSlot.java │ │ ├── EnderBukkitInventory.java │ │ ├── EnderBukkitInventoryView.java │ │ ├── EnderNmsContainer.java │ │ ├── EnderNmsInventory.java │ │ ├── EquipmentSlot.java │ │ ├── FakeCraftPlayer.java │ │ ├── FakeEntityHuman.java │ │ ├── FakeEntityPlayer.java │ │ ├── InaccessibleSlot.java │ │ ├── InvseeImpl.java │ │ ├── KnownPlayersProvider.java │ │ ├── MainBukkitInventory.java │ │ ├── MainBukkitInventoryView.java │ │ ├── MainNmsContainer.java │ │ ├── MainNmsInventory.java │ │ ├── NameSearchSaveFilesStrategy.java │ │ ├── PersonalSlot.java │ │ ├── Placeholders.java │ │ └── UUIDSearchSaveFilesStrategy.java ├── Impl_1_18_2_R2 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_18_2_R2 │ │ ├── BukkitInventoryView.java │ │ ├── CursorSlot.java │ │ ├── EnderBukkitInventory.java │ │ ├── EnderBukkitInventoryView.java │ │ ├── EnderNmsContainer.java │ │ ├── EnderNmsInventory.java │ │ ├── EquipmentSlot.java │ │ ├── FakeCraftPlayer.java │ │ ├── FakeEntityHuman.java │ │ ├── FakeEntityPlayer.java │ │ ├── HybridServerSupport.java │ │ ├── InaccessibleSlot.java │ │ ├── InvseeImpl.java │ │ ├── KnownPlayersProvider.java │ │ ├── MainBukkitInventory.java │ │ ├── MainBukkitInventoryView.java │ │ ├── MainNmsContainer.java │ │ ├── MainNmsInventory.java │ │ ├── NameSearchSaveFilesStrategy.java │ │ ├── PersonalSlot.java │ │ ├── Placeholders.java │ │ └── UUIDSearchSaveFilesStrategy.java ├── Impl_1_19_4_R3 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_19_4_R3 │ │ ├── BukkitInventoryView.java │ │ ├── EnderBukkitInventory.java │ │ ├── EnderBukkitInventoryView.java │ │ ├── EnderNmsContainer.java │ │ ├── EnderNmsInventory.java │ │ ├── EquipmentSlot.java │ │ ├── FakeCraftHumanEntity.java │ │ ├── FakeCraftPlayer.java │ │ ├── FakeEntityHuman.java │ │ ├── FakeEntityPlayer.java │ │ ├── HybridServerSupport.java │ │ ├── InaccessibleSlot.java │ │ ├── InvseeImpl.java │ │ ├── KnownPlayersProvider.java │ │ ├── MainBukkitInventory.java │ │ ├── MainBukkitInventoryView.java │ │ ├── MainNmsContainer.java │ │ ├── MainNmsInventory.java │ │ ├── NameSearchSaveFilesStrategy.java │ │ ├── PersonalSlot.java │ │ ├── Placeholders.java │ │ └── UUIDSearchSaveFilesStrategy.java ├── Impl_1_20_1_R1 │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_20_1_R1 │ │ ├── BukkitInventoryView.java │ │ ├── EnderBukkitInventory.java │ │ ├── EnderBukkitInventoryView.java │ │ ├── EnderNmsContainer.java │ │ ├── EnderNmsInventory.java │ │ ├── FakeCraftHumanEntity.java │ │ ├── FakeCraftPlayer.java │ │ ├── FakeEntityHuman.java │ │ ├── FakeEntityPlayer.java │ │ ├── HybridServerSupport.java │ │ ├── InvseeImpl.java │ │ ├── KnownPlayersProvider.java │ │ ├── MainBukkitInventory.java │ │ ├── MainBukkitInventoryView.java │ │ ├── MainNmsContainer.java │ │ ├── MainNmsInventory.java │ │ ├── NameSearchSaveFilesStrategy.java │ │ ├── Placeholders.java │ │ ├── Slots.java │ │ └── UUIDSearchSaveFilesStrategy.java ├── Impl_1_20_4_R3 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_20_4_R3 │ │ ├── BukkitInventoryView.java │ │ ├── EnderBukkitInventory.java │ │ ├── EnderBukkitInventoryView.java │ │ ├── EnderNmsContainer.java │ │ ├── EnderNmsInventory.java │ │ ├── FakeCraftHumanEntity.java │ │ ├── FakeCraftPlayer.java │ │ ├── FakeEntityHuman.java │ │ ├── FakeEntityPlayer.java │ │ ├── HybridServerSupport.java │ │ ├── InvseeImpl.java │ │ ├── KnownPlayersProvider.java │ │ ├── MainBukkitInventory.java │ │ ├── MainBukkitInventoryView.java │ │ ├── MainNmsContainer.java │ │ ├── MainNmsInventory.java │ │ ├── NameSearchSaveFilesStrategy.java │ │ ├── Placeholders.java │ │ ├── Slots.java │ │ └── UUIDSearchSaveFilesStrategy.java ├── Impl_1_20_6_R4 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── janboerman │ │ │ └── invsee │ │ │ └── spigot │ │ │ └── impl_1_20_6_R4 │ │ │ ├── BukkitInventoryView.java │ │ │ ├── EnderBukkitInventory.java │ │ │ ├── EnderBukkitInventoryView.java │ │ │ ├── EnderNmsContainer.java │ │ │ ├── EnderNmsInventory.java │ │ │ ├── FakeCraftHumanEntity.java │ │ │ ├── FakeCraftPlayer.java │ │ │ ├── FakeEntityHuman.java │ │ │ ├── FakeEntityPlayer.java │ │ │ ├── HybridServerSupport.java │ │ │ ├── InvseeImpl.java │ │ │ ├── ItemUtils.java │ │ │ ├── KnownPlayersProvider.java │ │ │ ├── MainBukkitInventory.java │ │ │ ├── MainBukkitInventoryView.java │ │ │ ├── MainNmsContainer.java │ │ │ ├── MainNmsInventory.java │ │ │ ├── NameSearchSaveFilesStrategy.java │ │ │ ├── Placeholders.java │ │ │ ├── Slots.java │ │ │ └── UUIDSearchSaveFilesStrategy.java │ │ └── test │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_20_6_R4 │ │ ├── AddItemTest.java │ │ ├── FakeItemFactory.java │ │ ├── FakeRegistry.java │ │ ├── FakeServer.java │ │ └── MaxStackMeta.java ├── Impl_1_21_1_R1 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── janboerman │ │ │ └── invsee │ │ │ └── spigot │ │ │ └── impl_1_21_1_R1 │ │ │ ├── BukkitInventoryView.java │ │ │ ├── EnderBukkitInventory.java │ │ │ ├── EnderBukkitInventoryView.java │ │ │ ├── EnderNmsContainer.java │ │ │ ├── EnderNmsInventory.java │ │ │ ├── FakeCraftHumanEntity.java │ │ │ ├── FakeCraftPlayer.java │ │ │ ├── FakeEntityHuman.java │ │ │ ├── FakeEntityPlayer.java │ │ │ ├── HybridServerSupport.java │ │ │ ├── InvseeImpl.java │ │ │ ├── ItemUtils.java │ │ │ ├── KnownPlayersProvider.java │ │ │ ├── MainBukkitInventory.java │ │ │ ├── MainBukkitInventoryView.java │ │ │ ├── MainNmsContainer.java │ │ │ ├── MainNmsInventory.java │ │ │ ├── NameSearchSaveFilesStrategy.java │ │ │ ├── Placeholders.java │ │ │ ├── Slots.java │ │ │ └── UUIDSearchSaveFilesStrategy.java │ │ └── test │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_21_1_R1 │ │ ├── AddItemTest.java │ │ ├── FakeItemFactory.java │ │ ├── FakeRegistry.java │ │ ├── FakeServer.java │ │ └── MaxStackMeta.java ├── Impl_1_21_4_R3 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── janboerman │ │ │ └── invsee │ │ │ └── spigot │ │ │ └── impl_1_21_4_R3 │ │ │ ├── BukkitInventoryView.java │ │ │ ├── EnderBukkitInventory.java │ │ │ ├── EnderBukkitInventoryView.java │ │ │ ├── EnderNmsContainer.java │ │ │ ├── EnderNmsInventory.java │ │ │ ├── FakeCraftHumanEntity.java │ │ │ ├── FakeCraftPlayer.java │ │ │ ├── FakeEntityHuman.java │ │ │ ├── FakeEntityPlayer.java │ │ │ ├── HybridServerSupport.java │ │ │ ├── InvseeImpl.java │ │ │ ├── ItemUtils.java │ │ │ ├── KnownPlayersProvider.java │ │ │ ├── MainBukkitInventory.java │ │ │ ├── MainBukkitInventoryView.java │ │ │ ├── MainNmsContainer.java │ │ │ ├── MainNmsInventory.java │ │ │ ├── NameSearchSaveFilesStrategy.java │ │ │ ├── Placeholders.java │ │ │ ├── Slots.java │ │ │ └── UUIDSearchSaveFilesStrategy.java │ │ └── test │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_21_4_R3 │ │ ├── AddItemTest.java │ │ ├── FakeItemFactory.java │ │ ├── FakeRegistry.java │ │ ├── FakeServer.java │ │ └── MaxStackMeta.java ├── Impl_1_21_5_R4 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── janboerman │ │ │ └── invsee │ │ │ └── spigot │ │ │ └── impl_1_21_5_R4 │ │ │ ├── BukkitInventoryView.java │ │ │ ├── EnderBukkitInventory.java │ │ │ ├── EnderBukkitInventoryView.java │ │ │ ├── EnderNmsContainer.java │ │ │ ├── EnderNmsInventory.java │ │ │ ├── FakeCraftHumanEntity.java │ │ │ ├── FakeCraftPlayer.java │ │ │ ├── FakeEntityHuman.java │ │ │ ├── FakeEntityPlayer.java │ │ │ ├── HybridServerSupport.java │ │ │ ├── InvseeImpl.java │ │ │ ├── ItemUtils.java │ │ │ ├── KnownPlayersProvider.java │ │ │ ├── MainBukkitInventory.java │ │ │ ├── MainBukkitInventoryView.java │ │ │ ├── MainNmsContainer.java │ │ │ ├── MainNmsInventory.java │ │ │ ├── NameSearchSaveFilesStrategy.java │ │ │ ├── Placeholders.java │ │ │ ├── Slots.java │ │ │ └── UUIDSearchSaveFilesStrategy.java │ │ └── test │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_21_5_R4 │ │ ├── AddItemTest.java │ │ ├── FakeItemFactory.java │ │ ├── FakeRegistry.java │ │ ├── FakeServer.java │ │ └── MaxStackMeta.java ├── Impl_1_21_7_R5 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── janboerman │ │ │ └── invsee │ │ │ └── spigot │ │ │ └── impl_1_21_7_R5 │ │ │ ├── BukkitInventoryView.java │ │ │ ├── EnderBukkitInventory.java │ │ │ ├── EnderBukkitInventoryView.java │ │ │ ├── EnderNmsContainer.java │ │ │ ├── EnderNmsInventory.java │ │ │ ├── FakeCraftHumanEntity.java │ │ │ ├── FakeCraftPlayer.java │ │ │ ├── FakeEntityHuman.java │ │ │ ├── FakeEntityPlayer.java │ │ │ ├── HybridServerSupport.java │ │ │ ├── InvseeImpl.java │ │ │ ├── ItemUtils.java │ │ │ ├── KnownPlayersProvider.java │ │ │ ├── MainBukkitInventory.java │ │ │ ├── MainBukkitInventoryView.java │ │ │ ├── MainNmsContainer.java │ │ │ ├── MainNmsInventory.java │ │ │ ├── NameSearchSaveFilesStrategy.java │ │ │ ├── Placeholders.java │ │ │ ├── Slots.java │ │ │ ├── ThrowingProblemReporter.java │ │ │ └── UUIDSearchSaveFilesStrategy.java │ │ └── test │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_21_7_R5 │ │ ├── AddItemTest.java │ │ ├── FakeItemFactory.java │ │ ├── FakeRegistry.java │ │ ├── FakeServer.java │ │ └── MaxStackMeta.java ├── Impl_1_21_9_R6 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── janboerman │ │ │ └── invsee │ │ │ └── spigot │ │ │ └── impl_1_21_9_R6 │ │ │ ├── BukkitInventoryView.java │ │ │ ├── EnderBukkitInventory.java │ │ │ ├── EnderBukkitInventoryView.java │ │ │ ├── EnderNmsContainer.java │ │ │ ├── EnderNmsInventory.java │ │ │ ├── FakeCraftHumanEntity.java │ │ │ ├── FakeCraftPlayer.java │ │ │ ├── FakeEntityHuman.java │ │ │ ├── FakeEntityPlayer.java │ │ │ ├── HybridServerSupport.java │ │ │ ├── InvseeImpl.java │ │ │ ├── ItemUtils.java │ │ │ ├── KnownPlayersProvider.java │ │ │ ├── MainBukkitInventory.java │ │ │ ├── MainBukkitInventoryView.java │ │ │ ├── MainNmsContainer.java │ │ │ ├── MainNmsInventory.java │ │ │ ├── NameSearchSaveFilesStrategy.java │ │ │ ├── Placeholders.java │ │ │ ├── Slots.java │ │ │ ├── ThrowingProblemReporter.java │ │ │ └── UUIDSearchSaveFilesStrategy.java │ │ └── test │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_21_9_R6 │ │ ├── AddItemTest.java │ │ ├── FakeItemFactory.java │ │ ├── FakeRegistry.java │ │ ├── FakeServer.java │ │ └── MaxStackMeta.java ├── Impl_1_21_R1 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── janboerman │ │ │ └── invsee │ │ │ └── spigot │ │ │ └── impl_1_21_R1 │ │ │ ├── BukkitInventoryView.java │ │ │ ├── EnderBukkitInventory.java │ │ │ ├── EnderBukkitInventoryView.java │ │ │ ├── EnderNmsContainer.java │ │ │ ├── EnderNmsInventory.java │ │ │ ├── FakeCraftHumanEntity.java │ │ │ ├── FakeCraftPlayer.java │ │ │ ├── FakeEntityHuman.java │ │ │ ├── FakeEntityPlayer.java │ │ │ ├── HybridServerSupport.java │ │ │ ├── InvseeImpl.java │ │ │ ├── ItemUtils.java │ │ │ ├── KnownPlayersProvider.java │ │ │ ├── MainBukkitInventory.java │ │ │ ├── MainBukkitInventoryView.java │ │ │ ├── MainNmsContainer.java │ │ │ ├── MainNmsInventory.java │ │ │ ├── NameSearchSaveFilesStrategy.java │ │ │ ├── Placeholders.java │ │ │ ├── Slots.java │ │ │ └── UUIDSearchSaveFilesStrategy.java │ │ └── test │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_21_R1 │ │ ├── AddItemTest.java │ │ ├── FakeItemFactory.java │ │ ├── FakeRegistry.java │ │ ├── FakeServer.java │ │ └── MaxStackMeta.java ├── Impl_1_8_8_R3 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── spigot │ │ └── impl_1_8_R3 │ │ ├── BukkitInventoryView.java │ │ ├── EnderBukkitInventory.java │ │ ├── EnderBukkitInventoryView.java │ │ ├── EnderNmsContainer.java │ │ ├── EnderNmsInventory.java │ │ ├── FakeCraftPlayer.java │ │ ├── FakeEntityHuman.java │ │ ├── FakeEntityPlayer.java │ │ ├── HybridServerSupport.java │ │ ├── InaccessibleSlot.java │ │ ├── InvseeImpl.java │ │ ├── KnownPlayersProvider.java │ │ ├── MainBukkitInventory.java │ │ ├── MainBukkitInventoryView.java │ │ ├── MainNmsContainer.java │ │ ├── MainNmsInventory.java │ │ ├── NameSearchSaveFilesStrategy.java │ │ ├── PersonalSlot.java │ │ ├── Placeholders.java │ │ ├── PlayerInventoryMirror.java │ │ ├── Slots.java │ │ └── UUIDSearchSaveFilesStrategy.java └── Impl_Glowstone │ ├── .gitignore │ ├── pom.xml │ └── src │ └── main │ └── java │ └── com │ └── janboerman │ └── invsee │ └── glowstone │ ├── BukkitInventoryView.java │ ├── DecoratedWindowClickHandler.java │ ├── EnderInventory.java │ ├── EnderInventoryView.java │ ├── FakeByteBufAllocator.java │ ├── FakeChannel.java │ ├── FakeChannelFuture.java │ ├── FakePipeline.java │ ├── FakePlayer.java │ ├── FakeSocketAddress.java │ ├── GlowstoneHacks.java │ ├── InvseeImpl.java │ ├── KnownPlayersProvider.java │ ├── MainInventory.java │ ├── MainInventoryView.java │ ├── NameSearchSaveFilesStrategy.java │ ├── Placeholders.java │ ├── Slots.java │ └── UUIDSearchSaveFilesStrategy.java ├── InvSee++_Plugin ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── janboerman │ │ │ └── invsee │ │ │ ├── folia │ │ │ └── FoliaScheduler.java │ │ │ ├── paper │ │ │ └── AsyncTabCompleter.java │ │ │ └── spigot │ │ │ ├── DefaultScheduler.java │ │ │ ├── EnderseeCommandExecutor.java │ │ │ ├── InvseeCommandExecutor.java │ │ │ ├── InvseePlusPlus.java │ │ │ ├── InvseeTabCompleter.java │ │ │ ├── ReloadCommandExecutor.java │ │ │ ├── Setup.java │ │ │ └── SpectatorInventoryEditListener.java │ └── resources │ │ ├── config.yml │ │ └── plugin.yml │ └── test │ └── java │ └── com │ └── janboerman │ └── invsee │ └── fakes │ ├── FakeItemFactory.java │ ├── FakeItemMeta.java │ ├── FakeServer.java │ └── FakeUnsafeValues.java ├── InvSee++_Test_Plugin ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── test │ │ └── InvseeTestPlugin.java │ └── resources │ └── plugin.yml ├── LICENSE.txt ├── Mojang_API ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── mojangapi │ │ ├── ElectroidAPI.java │ │ ├── MojangAPI.java │ │ └── ResponseUtils.java │ └── java11 │ └── com │ └── janboerman │ └── invsee │ └── mojangapi │ ├── ElectroidAPI.java │ ├── MojangAPI.java │ └── ResponseUtils.java ├── README.md ├── Utils ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── janboerman │ │ │ └── invsee │ │ │ └── utils │ │ │ ├── ArrayHelper.java │ │ │ ├── CaseInsensitiveMap.java │ │ │ ├── Compat.java │ │ │ ├── ConcatList.java │ │ │ ├── ConstantList.java │ │ │ ├── Either.java │ │ │ ├── FuzzyReflection.java │ │ │ ├── Maybe.java │ │ │ ├── Out.java │ │ │ ├── Pair.java │ │ │ ├── Ref.java │ │ │ ├── Rethrow.java │ │ │ ├── SingletonList.java │ │ │ ├── StringHelper.java │ │ │ ├── SynchronizedIterator.java │ │ │ ├── UUIDHelper.java │ │ │ └── UsernameTrie.java │ └── java11 │ │ └── com │ │ └── janboerman │ │ └── invsee │ │ └── utils │ │ └── Compat.java │ └── test │ └── java │ └── com │ └── janboerman │ └── invsee │ └── utils │ ├── UUIDTest.java │ └── UsernameTrieTest.java ├── img ├── invsee.blend └── invsee6.png └── pom.xml /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.libs/BungeePerms-3.0-dev-80.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/.libs/BungeePerms-3.0-dev-80.jar -------------------------------------------------------------------------------- /.libs/UltraPermissionsAPI-5.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/.libs/UltraPermissionsAPI-5.5.2.jar -------------------------------------------------------------------------------- /.libs/glowstone.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/.libs/glowstone.jar -------------------------------------------------------------------------------- /.libs/perworldinventory-kt-2.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/.libs/perworldinventory-kt-2.3.2.jar -------------------------------------------------------------------------------- /InvSee++_Clear_Plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clear_Plugin/.gitignore -------------------------------------------------------------------------------- /InvSee++_Clear_Plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clear_Plugin/pom.xml -------------------------------------------------------------------------------- /InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/ClearPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/ClearPlugin.java -------------------------------------------------------------------------------- /InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/ClearTabCompleter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/ClearTabCompleter.java -------------------------------------------------------------------------------- /InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/Convert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/Convert.java -------------------------------------------------------------------------------- /InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/EnderClearExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/EnderClearExecutor.java -------------------------------------------------------------------------------- /InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/InvClearExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/InvClearExecutor.java -------------------------------------------------------------------------------- /InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/ItemType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/ItemType.java -------------------------------------------------------------------------------- /InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/RemoveUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clear_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clear/RemoveUtil.java -------------------------------------------------------------------------------- /InvSee++_Clear_Plugin/src/main/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clear_Plugin/src/main/resources/config.yml -------------------------------------------------------------------------------- /InvSee++_Clear_Plugin/src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clear_Plugin/src/main/resources/plugin.yml -------------------------------------------------------------------------------- /InvSee++_Clone_Plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clone_Plugin/.gitignore -------------------------------------------------------------------------------- /InvSee++_Clone_Plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clone_Plugin/pom.xml -------------------------------------------------------------------------------- /InvSee++_Clone_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clone/ClonePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clone_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clone/ClonePlugin.java -------------------------------------------------------------------------------- /InvSee++_Clone_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clone/EnderCloneExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clone_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clone/EnderCloneExecutor.java -------------------------------------------------------------------------------- /InvSee++_Clone_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clone/InvCloneExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clone_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clone/InvCloneExecutor.java -------------------------------------------------------------------------------- /InvSee++_Clone_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clone/Responses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clone_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clone/Responses.java -------------------------------------------------------------------------------- /InvSee++_Clone_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clone/TargetUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clone_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/clone/TargetUtil.java -------------------------------------------------------------------------------- /InvSee++_Clone_Plugin/src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Clone_Plugin/src/main/resources/plugin.yml -------------------------------------------------------------------------------- /InvSee++_Common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/.gitignore -------------------------------------------------------------------------------- /InvSee++_Common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/pom.xml -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/CreationOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/CreationOptions.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/EnderSpectatorInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/EnderSpectatorInventory.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/EnderSpectatorInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/EnderSpectatorInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/Exempt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/Exempt.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/InvseeAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/InvseeAPI.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/InvseePlusPlus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/InvseePlusPlus.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/MainSpectatorInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/MainSpectatorInventory.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/MainSpectatorInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/MainSpectatorInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/OfflinePlayerProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/OfflinePlayerProvider.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/Scheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/Scheduler.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/SpectatorInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/SpectatorInventory.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/SpectatorInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/SpectatorInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/Title.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/Title.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/event/SpectatorInventoryOfflineCreatedEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/event/SpectatorInventoryOfflineCreatedEvent.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/event/SpectatorInventorySaveEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/event/SpectatorInventorySaveEvent.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/Difference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/Difference.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/DifferenceTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/DifferenceTracker.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/ItemType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/ItemType.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/LogGranularity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/LogGranularity.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/LogOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/LogOptions.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/LogOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/LogOutput.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/LogTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/logging/LogTarget.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/placeholder/PlaceholderGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/placeholder/PlaceholderGroup.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/placeholder/PlaceholderPalette.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/placeholder/PlaceholderPalette.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/NameElectroidAPIStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/NameElectroidAPIStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/NameInMemoryStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/NameInMemoryStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/NameMojangAPIStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/NameMojangAPIStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/NameOnlinePlayerStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/NameOnlinePlayerStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/NamePermissionPluginStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/NamePermissionPluginStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/NameResolveStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/NameResolveStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDBungeeCordStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDBungeeCordStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDElectroidAPIStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDElectroidAPIStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDInMemoryStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDInMemoryStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDMojangAPIStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDMojangAPIStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDOfflineModeStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDOfflineModeStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDOfflinePlayerStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDOfflinePlayerStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDOnlinePlayerStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDOnlinePlayerStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDPaperCacheStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDPaperCacheStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDPermissionPluginStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDPermissionPluginStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDResolveStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/resolve/UUIDResolveStrategy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/AbstractNotCreatedReason.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/AbstractNotCreatedReason.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/ImplementationFault.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/ImplementationFault.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/InventoryNotCreated.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/InventoryNotCreated.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/InventoryOpenEventCancelled.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/InventoryOpenEventCancelled.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/NotCreatedReason.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/NotCreatedReason.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/NotOpenedReason.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/NotOpenedReason.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/OfflineSupportDisabled.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/OfflineSupportDisabled.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/OpenResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/OpenResponse.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/SaveResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/SaveResponse.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/SpectateResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/SpectateResponse.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/TargetDoesNotExist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/TargetDoesNotExist.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/TargetHasExemptPermission.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/TargetHasExemptPermission.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/UnknownReason.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/UnknownReason.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/UnknownTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/response/UnknownTarget.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/target/GameProfileTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/target/GameProfileTarget.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/target/PlayerTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/target/PlayerTarget.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/target/Target.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/target/Target.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/target/UniqueIdTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/target/UniqueIdTarget.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/target/UsernameTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/target/UsernameTarget.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/template/EnderChestSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/template/EnderChestSlot.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/template/Mirror.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/template/Mirror.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/template/PlayerInventorySlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/api/template/PlayerInventorySlot.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/CompletedEmpty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/CompletedEmpty.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/ConstantTitle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/ConstantTitle.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/EventHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/EventHelper.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/FakePersistentDataAdapterContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/FakePersistentDataAdapterContext.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/FakePersistentDataContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/FakePersistentDataContainer.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/InvseePlatform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/InvseePlatform.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/LogRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/LogRecord.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/NBTConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/NBTConstants.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/NamesAndUUIDs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/NamesAndUUIDs.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/OpenSpectatorsCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/OpenSpectatorsCache.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/PlayerFileHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/PlayerFileHelper.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/TestingCompatLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/TestingCompatLayer.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/AbstractNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/AbstractNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/EnderInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/EnderInventory.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/MainInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/MainInventory.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/Personal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/Personal.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/ShallowCopy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/ShallowCopy.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/StandardSpectatorInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/StandardSpectatorInventory.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/Wrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/inventory/Wrapper.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/placeholder/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/placeholder/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/placeholder/SimplePlaceholderPalette.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/placeholder/SimplePlaceholderPalette.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/template/EnderChestMirror.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/template/EnderChestMirror.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/template/PlayerInventoryMirror.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/template/PlayerInventoryMirror.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/CraftbukkitMappingsVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/CraftbukkitMappingsVersion.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/GlowstoneGameVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/GlowstoneGameVersion.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/LegacyVersions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/LegacyVersions.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/MinecraftPlatform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/MinecraftPlatform.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/MinecraftVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/MinecraftVersion.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/ServerSoftware.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/ServerSoftware.java -------------------------------------------------------------------------------- /InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/SupportedServerSoftware.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/main/java/com/janboerman/invsee/spigot/internal/version/SupportedServerSoftware.java -------------------------------------------------------------------------------- /InvSee++_Common/src/test/java/com/janboerman/invsee/spigot/logging/DifferenceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/test/java/com/janboerman/invsee/spigot/logging/DifferenceTest.java -------------------------------------------------------------------------------- /InvSee++_Common/src/test/java/com/janboerman/invsee/spigot/template/MirrorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Common/src/test/java/com/janboerman/invsee/spigot/template/MirrorTest.java -------------------------------------------------------------------------------- /InvSee++_Give_Common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Common/.gitignore -------------------------------------------------------------------------------- /InvSee++_Give_Common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Common/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Common/src/main/java/com/janboerman/invsee/spigot/addon/give/common/Convert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Common/src/main/java/com/janboerman/invsee/spigot/addon/give/common/Convert.java -------------------------------------------------------------------------------- /InvSee++_Give_Common/src/main/java/com/janboerman/invsee/spigot/addon/give/common/GiveApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Common/src/main/java/com/janboerman/invsee/spigot/addon/give/common/GiveApi.java -------------------------------------------------------------------------------- /InvSee++_Give_Common/src/main/java/com/janboerman/invsee/spigot/addon/give/common/ItemType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Common/src/main/java/com/janboerman/invsee/spigot/addon/give/common/ItemType.java -------------------------------------------------------------------------------- /InvSee++_Give_Common/src/main/java/com/janboerman/invsee/spigot/addon/give/common/NeditImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Common/src/main/java/com/janboerman/invsee/spigot/addon/give/common/NeditImpl.java -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/.gitignore -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_12_2_R1/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_12_2_R1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_12_2_R1/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_16_5_R3/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_16_5_R3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_16_5_R3/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_17_1_R1/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_17_1_R1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_17_1_R1/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_18_2_R2/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_18_2_R2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_18_2_R2/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_19_4_R3/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_19_4_R3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_19_4_R3/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_20_1_R1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_20_1_R1/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_20_4_R3/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_20_4_R3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_20_4_R3/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_20_6_R4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_20_6_R4/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_21_1_R1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_21_1_R1/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_21_4_R3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_21_4_R3/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_21_5_R4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_21_5_R4/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_21_7_R5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_21_7_R5/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_21_9_R6/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_21_9_R6/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_21_R1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_21_R1/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_8_8_R3/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_1_8_8_R3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_1_8_8_R3/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_Glowstone/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Give_Platforms/Give_Impl_Glowstone/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Platforms/Give_Impl_Glowstone/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/.gitignore -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/pom.xml -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/EnderGiveExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/EnderGiveExecutor.java -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/GivePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/GivePlugin.java -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/GiveTabCompleter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/GiveTabCompleter.java -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/InvGiveExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/InvGiveExecutor.java -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/ItemQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/ItemQueue.java -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/ItemQueueManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/ItemQueueManager.java -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/JoinListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/JoinListener.java -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/Setup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/Setup.java -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/cmd/ArgParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/cmd/ArgParser.java -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/cmd/ArgType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/src/main/java/com/janboerman/invsee/spigot/addon/give/cmd/ArgType.java -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/src/main/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/src/main/resources/config.yml -------------------------------------------------------------------------------- /InvSee++_Give_Plugin/src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Give_Plugin/src/main/resources/plugin.yml -------------------------------------------------------------------------------- /InvSee++_MultiverseInventories/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_MultiverseInventories/.gitignore -------------------------------------------------------------------------------- /InvSee++_MultiverseInventories/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_MultiverseInventories/pom.xml -------------------------------------------------------------------------------- /InvSee++_MultiverseInventories/src/main/java/com/janboerman/invsee/spigot/multiverseinventories/MviCommandArgs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_MultiverseInventories/src/main/java/com/janboerman/invsee/spigot/multiverseinventories/MviCommandArgs.java -------------------------------------------------------------------------------- /InvSee++_MultiverseInventories/src/main/java/com/janboerman/invsee/spigot/multiverseinventories/ProfileId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_MultiverseInventories/src/main/java/com/janboerman/invsee/spigot/multiverseinventories/ProfileId.java -------------------------------------------------------------------------------- /InvSee++_PerWorldInventory/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_PerWorldInventory/.gitignore -------------------------------------------------------------------------------- /InvSee++_PerWorldInventory/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_PerWorldInventory/pom.xml -------------------------------------------------------------------------------- /InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/FakeAttributeInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/FakeAttributeInstance.java -------------------------------------------------------------------------------- /InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/FakeInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/FakeInventory.java -------------------------------------------------------------------------------- /InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/FakePlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/FakePlayer.java -------------------------------------------------------------------------------- /InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/FakePlayerInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/FakePlayerInventory.java -------------------------------------------------------------------------------- /InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/FakePlayerProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/FakePlayerProfile.java -------------------------------------------------------------------------------- /InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/PerWorldInventoryHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/PerWorldInventoryHook.java -------------------------------------------------------------------------------- /InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/PerWorldInventorySeeApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/PerWorldInventorySeeApi.java -------------------------------------------------------------------------------- /InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/ProfileId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/ProfileId.java -------------------------------------------------------------------------------- /InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/PwiCommandArgs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_PerWorldInventory/src/main/java/com/janboerman/invsee/spigot/perworldinventory/PwiCommandArgs.java -------------------------------------------------------------------------------- /InvSee++_Platforms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/.gitignore -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/EnderBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/EnderBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/InaccessibleSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/InaccessibleSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/PersonalSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/PersonalSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_12_2_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_12_R1/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/EnderBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/EnderBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/InaccessibleSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/InaccessibleSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/PersonalSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/PersonalSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_16_5_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_16_R3/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/CursorSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/CursorSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/EquipmentSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/EquipmentSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/InaccessibleSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/InaccessibleSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/PersonalSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/PersonalSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_17_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_17_1_R1/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/CursorSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/CursorSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/EquipmentSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/EquipmentSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/InaccessibleSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/InaccessibleSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/PersonalSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/PersonalSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_18_2_R2/src/main/java/com/janboerman/invsee/spigot/impl_1_18_2_R2/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/EquipmentSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/EquipmentSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/FakeCraftHumanEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/FakeCraftHumanEntity.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/InaccessibleSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/InaccessibleSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/PersonalSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/PersonalSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_19_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_19_4_R3/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/FakeCraftHumanEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/FakeCraftHumanEntity.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_20_1_R1/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/FakeCraftHumanEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/FakeCraftHumanEntity.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_20_4_R3/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeCraftHumanEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeCraftHumanEntity.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/ItemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/ItemUtils.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/AddItemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/AddItemTest.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeItemFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeItemFactory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeRegistry.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/FakeServer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_20_6_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/MaxStackMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_20_6_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_20_6_R4/MaxStackMeta.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeCraftHumanEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeCraftHumanEntity.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/ItemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/ItemUtils.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/AddItemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/AddItemTest.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeItemFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeItemFactory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeRegistry.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/FakeServer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_1_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/MaxStackMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_1_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_1_R1/MaxStackMeta.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeCraftHumanEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeCraftHumanEntity.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/ItemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/ItemUtils.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/test/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/AddItemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/test/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/AddItemTest.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/test/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeItemFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/test/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeItemFactory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/test/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/test/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeRegistry.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/test/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/test/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/FakeServer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_4_R3/src/test/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/MaxStackMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_4_R3/src/test/java/com/janboerman/invsee/spigot/impl_1_21_4_R3/MaxStackMeta.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeCraftHumanEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeCraftHumanEntity.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/ItemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/ItemUtils.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/main/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/AddItemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/AddItemTest.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeItemFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeItemFactory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeRegistry.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/FakeServer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_5_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/MaxStackMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_5_R4/src/test/java/com/janboerman/invsee/spigot/impl_1_21_5_R4/MaxStackMeta.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeCraftHumanEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeCraftHumanEntity.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/ItemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/ItemUtils.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/ThrowingProblemReporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/main/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/ThrowingProblemReporter.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/test/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/AddItemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/test/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/AddItemTest.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/test/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeItemFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/test/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeItemFactory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/test/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/test/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeRegistry.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/test/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/test/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/FakeServer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_7_R5/src/test/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/MaxStackMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_7_R5/src/test/java/com/janboerman/invsee/spigot/impl_1_21_7_R5/MaxStackMeta.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeCraftHumanEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeCraftHumanEntity.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/ItemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/ItemUtils.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/main/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/test/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/AddItemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/test/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/AddItemTest.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/test/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeItemFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/test/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeItemFactory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/test/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/test/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeRegistry.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/test/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/test/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/FakeServer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_9_R6/src/test/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/MaxStackMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_9_R6/src/test/java/com/janboerman/invsee/spigot/impl_1_21_9_R6/MaxStackMeta.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/EnderBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/EnderBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeCraftHumanEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeCraftHumanEntity.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/ItemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/ItemUtils.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/main/java/com/janboerman/invsee/spigot/impl_1_21_R1/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_R1/AddItemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_R1/AddItemTest.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeItemFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeItemFactory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeRegistry.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_R1/FakeServer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_21_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_R1/MaxStackMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_21_R1/src/test/java/com/janboerman/invsee/spigot/impl_1_21_R1/MaxStackMeta.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/EnderBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/EnderBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/EnderBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/EnderBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/EnderNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/EnderNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/EnderNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/EnderNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/FakeCraftPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/FakeCraftPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/FakeEntityHuman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/FakeEntityHuman.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/FakeEntityPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/FakeEntityPlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/HybridServerSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/HybridServerSupport.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/InaccessibleSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/InaccessibleSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/MainBukkitInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/MainBukkitInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/MainBukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/MainBukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/MainNmsContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/MainNmsContainer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/MainNmsInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/MainNmsInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/PersonalSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/PersonalSlot.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/PlayerInventoryMirror.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/PlayerInventoryMirror.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_1_8_8_R3/src/main/java/com/janboerman/invsee/spigot/impl_1_8_R3/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/pom.xml -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/BukkitInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/BukkitInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/DecoratedWindowClickHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/DecoratedWindowClickHandler.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/EnderInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/EnderInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/EnderInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/EnderInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/FakeByteBufAllocator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/FakeByteBufAllocator.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/FakeChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/FakeChannel.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/FakeChannelFuture.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/FakeChannelFuture.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/FakePipeline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/FakePipeline.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/FakePlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/FakePlayer.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/FakeSocketAddress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/FakeSocketAddress.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/GlowstoneHacks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/GlowstoneHacks.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/InvseeImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/InvseeImpl.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/KnownPlayersProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/KnownPlayersProvider.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/MainInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/MainInventory.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/MainInventoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/MainInventoryView.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/NameSearchSaveFilesStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/NameSearchSaveFilesStrategy.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/Placeholders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/Placeholders.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/Slots.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/Slots.java -------------------------------------------------------------------------------- /InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/UUIDSearchSaveFilesStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Platforms/Impl_Glowstone/src/main/java/com/janboerman/invsee/glowstone/UUIDSearchSaveFilesStrategy.java -------------------------------------------------------------------------------- /InvSee++_Plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/.gitignore -------------------------------------------------------------------------------- /InvSee++_Plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/pom.xml -------------------------------------------------------------------------------- /InvSee++_Plugin/src/main/java/com/janboerman/invsee/folia/FoliaScheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/main/java/com/janboerman/invsee/folia/FoliaScheduler.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/main/java/com/janboerman/invsee/paper/AsyncTabCompleter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/main/java/com/janboerman/invsee/paper/AsyncTabCompleter.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/DefaultScheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/DefaultScheduler.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/EnderseeCommandExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/EnderseeCommandExecutor.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/InvseeCommandExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/InvseeCommandExecutor.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/InvseePlusPlus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/InvseePlusPlus.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/InvseeTabCompleter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/InvseeTabCompleter.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/ReloadCommandExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/ReloadCommandExecutor.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/Setup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/Setup.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/SpectatorInventoryEditListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/main/java/com/janboerman/invsee/spigot/SpectatorInventoryEditListener.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/main/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/main/resources/config.yml -------------------------------------------------------------------------------- /InvSee++_Plugin/src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/main/resources/plugin.yml -------------------------------------------------------------------------------- /InvSee++_Plugin/src/test/java/com/janboerman/invsee/fakes/FakeItemFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/test/java/com/janboerman/invsee/fakes/FakeItemFactory.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/test/java/com/janboerman/invsee/fakes/FakeItemMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/test/java/com/janboerman/invsee/fakes/FakeItemMeta.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/test/java/com/janboerman/invsee/fakes/FakeServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/test/java/com/janboerman/invsee/fakes/FakeServer.java -------------------------------------------------------------------------------- /InvSee++_Plugin/src/test/java/com/janboerman/invsee/fakes/FakeUnsafeValues.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Plugin/src/test/java/com/janboerman/invsee/fakes/FakeUnsafeValues.java -------------------------------------------------------------------------------- /InvSee++_Test_Plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Test_Plugin/.gitignore -------------------------------------------------------------------------------- /InvSee++_Test_Plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Test_Plugin/pom.xml -------------------------------------------------------------------------------- /InvSee++_Test_Plugin/src/main/java/com/janboerman/invsee/test/InvseeTestPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Test_Plugin/src/main/java/com/janboerman/invsee/test/InvseeTestPlugin.java -------------------------------------------------------------------------------- /InvSee++_Test_Plugin/src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/InvSee++_Test_Plugin/src/main/resources/plugin.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Mojang_API/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Mojang_API/.gitignore -------------------------------------------------------------------------------- /Mojang_API/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Mojang_API/pom.xml -------------------------------------------------------------------------------- /Mojang_API/src/main/java/com/janboerman/invsee/mojangapi/ElectroidAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Mojang_API/src/main/java/com/janboerman/invsee/mojangapi/ElectroidAPI.java -------------------------------------------------------------------------------- /Mojang_API/src/main/java/com/janboerman/invsee/mojangapi/MojangAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Mojang_API/src/main/java/com/janboerman/invsee/mojangapi/MojangAPI.java -------------------------------------------------------------------------------- /Mojang_API/src/main/java/com/janboerman/invsee/mojangapi/ResponseUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Mojang_API/src/main/java/com/janboerman/invsee/mojangapi/ResponseUtils.java -------------------------------------------------------------------------------- /Mojang_API/src/main/java11/com/janboerman/invsee/mojangapi/ElectroidAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Mojang_API/src/main/java11/com/janboerman/invsee/mojangapi/ElectroidAPI.java -------------------------------------------------------------------------------- /Mojang_API/src/main/java11/com/janboerman/invsee/mojangapi/MojangAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Mojang_API/src/main/java11/com/janboerman/invsee/mojangapi/MojangAPI.java -------------------------------------------------------------------------------- /Mojang_API/src/main/java11/com/janboerman/invsee/mojangapi/ResponseUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Mojang_API/src/main/java11/com/janboerman/invsee/mojangapi/ResponseUtils.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/README.md -------------------------------------------------------------------------------- /Utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/.gitignore -------------------------------------------------------------------------------- /Utils/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/pom.xml -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/ArrayHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/ArrayHelper.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/CaseInsensitiveMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/CaseInsensitiveMap.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/Compat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/Compat.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/ConcatList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/ConcatList.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/ConstantList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/ConstantList.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/Either.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/Either.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/FuzzyReflection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/FuzzyReflection.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/Maybe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/Maybe.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/Out.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/Out.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/Pair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/Pair.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/Ref.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/Ref.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/Rethrow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/Rethrow.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/SingletonList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/SingletonList.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/StringHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/StringHelper.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/SynchronizedIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/SynchronizedIterator.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/UUIDHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/UUIDHelper.java -------------------------------------------------------------------------------- /Utils/src/main/java/com/janboerman/invsee/utils/UsernameTrie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java/com/janboerman/invsee/utils/UsernameTrie.java -------------------------------------------------------------------------------- /Utils/src/main/java11/com/janboerman/invsee/utils/Compat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/main/java11/com/janboerman/invsee/utils/Compat.java -------------------------------------------------------------------------------- /Utils/src/test/java/com/janboerman/invsee/utils/UUIDTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/test/java/com/janboerman/invsee/utils/UUIDTest.java -------------------------------------------------------------------------------- /Utils/src/test/java/com/janboerman/invsee/utils/UsernameTrieTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/Utils/src/test/java/com/janboerman/invsee/utils/UsernameTrieTest.java -------------------------------------------------------------------------------- /img/invsee.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/img/invsee.blend -------------------------------------------------------------------------------- /img/invsee6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/img/invsee6.png -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jannyboy11/InvSee-plus-plus/HEAD/pom.xml --------------------------------------------------------------------------------