├── .clang-format ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .dockerignore ├── .editorconfig ├── .github └── workflows │ └── format-check.yml ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── Jenkinsfile ├── LICENSE ├── README.md ├── blocks.cmake ├── boost.cmake ├── bootstrap.sh ├── c_flag_overrides.cmake ├── cubic-server ├── CMakeLists.txt ├── Chat.cpp ├── Chat.hpp ├── Checksum.cpp ├── Checksum.hpp ├── Client.cpp ├── Client.hpp ├── CommandLine.cpp ├── CommandLine.hpp ├── CompressionUtils.cpp ├── CompressionUtils.hpp ├── Dimension.cpp ├── Dimension.hpp ├── EASEncryptionHandler.cpp ├── EASEncryptionHandler.hpp ├── Permissions.cpp ├── Permissions.hpp ├── Player.cpp ├── Player.hpp ├── PlayerAttributes.cpp ├── PlayerAttributes.hpp ├── PluginInterface.cpp ├── PluginInterface.hpp ├── PluginManager.cpp ├── PluginManager.hpp ├── PrometheusExporter.cpp ├── PrometheusExporter.hpp ├── RSAEncryptionHandler.cpp ├── RSAEncryptionHandler.hpp ├── Server.cpp ├── Server.hpp ├── SoundList.hpp ├── SoundSystem.cpp ├── SoundSystem.hpp ├── TickClock.cpp ├── TickClock.hpp ├── World.cpp ├── World.hpp ├── WorldGroup.cpp ├── WorldGroup.hpp ├── ai │ ├── CMakeLists.txt │ ├── ai.hpp │ ├── wandering.cpp │ └── wandering.hpp ├── allCommands.hpp ├── chat │ ├── CMakeLists.txt │ ├── ChatRegistry.cpp │ ├── ChatRegistry.hpp │ ├── Message.cpp │ ├── Message.hpp │ ├── events.hpp │ ├── events │ │ ├── CMakeLists.txt │ │ ├── Click.cpp │ │ ├── Click.hpp │ │ ├── Hover.cpp │ │ ├── Hover.hpp │ │ ├── clicks │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangePage.cpp │ │ │ ├── ChangePage.hpp │ │ │ ├── CopyToClipboard.cpp │ │ │ ├── CopyToClipboard.hpp │ │ │ ├── OpenUrl.cpp │ │ │ ├── OpenUrl.hpp │ │ │ ├── RunCommand.cpp │ │ │ ├── RunCommand.hpp │ │ │ ├── SuggestCommand.cpp │ │ │ └── SuggestCommand.hpp │ │ └── hovers │ │ │ ├── CMakeLists.txt │ │ │ ├── EntityEvent.cpp │ │ │ ├── EntityEvent.hpp │ │ │ ├── ItemEvent.cpp │ │ │ ├── ItemEvent.hpp │ │ │ ├── Text.cpp │ │ │ └── Text.hpp │ ├── translationFromKey.cpp │ └── translationFromKey.hpp ├── command_parser │ ├── CMakeLists.txt │ ├── CommandParser.cpp │ ├── CommandParser.hpp │ ├── commands │ │ ├── Armor.cpp │ │ ├── Armor.hpp │ │ ├── CMakeLists.txt │ │ ├── CommandBase.hpp │ │ ├── Deop.cpp │ │ ├── Deop.hpp │ │ ├── DumpChunk.cpp │ │ ├── DumpChunk.hpp │ │ ├── Gamemode.cpp │ │ ├── Gamemode.hpp │ │ ├── Help.cpp │ │ ├── Help.hpp │ │ ├── InventoryDump.hpp │ │ ├── Log.cpp │ │ ├── Log.hpp │ │ ├── Loot.cpp │ │ ├── Loot.hpp │ │ ├── MSPT.cpp │ │ ├── MSPT.hpp │ │ ├── Op.cpp │ │ ├── Op.hpp │ │ ├── QuestionMark.cpp │ │ ├── QuestionMark.hpp │ │ ├── Reload.cpp │ │ ├── Reload.hpp │ │ ├── SaveRegion.cpp │ │ ├── SaveRegion.hpp │ │ ├── Scoreboard.cpp │ │ ├── Scoreboard.hpp │ │ ├── Seed.cpp │ │ ├── Seed.hpp │ │ ├── Stop.cpp │ │ ├── Stop.hpp │ │ ├── Subtitle.cpp │ │ ├── Subtitle.hpp │ │ ├── Teleport.cpp │ │ ├── Teleport.hpp │ │ ├── Time.cpp │ │ ├── Time.hpp │ │ ├── Title.cpp │ │ ├── Title.hpp │ │ ├── TitleTimes.cpp │ │ ├── TitleTimes.hpp │ │ ├── Tps.cpp │ │ └── Tps.hpp │ └── selectors │ │ ├── CMakeLists.txt │ │ ├── selectors.cpp │ │ └── selectors.hpp ├── concept.hpp ├── configuration │ ├── ArgumentHolder.cpp │ ├── ArgumentHolder.hpp │ ├── ArgumentsParser.cpp │ ├── ArgumentsParser.hpp │ ├── CMakeLists.txt │ ├── ConfigHandler.cpp │ ├── ConfigHandler.hpp │ ├── ConfigHandler_unittest.cpp │ ├── Node.cpp │ ├── Node.hpp │ ├── Value.cpp │ ├── Value.hpp │ ├── conversion.hpp │ ├── details.hpp │ └── errors.hpp ├── default │ ├── CMakeLists.txt │ ├── DefaultWorld.cpp │ ├── DefaultWorld.hpp │ ├── DefaultWorldGroup.cpp │ ├── DefaultWorldGroup.hpp │ ├── Overworld.cpp │ ├── Overworld.hpp │ ├── TheEnd.cpp │ ├── TheEnd.hpp │ ├── TheNether.cpp │ └── TheNether.hpp ├── entities │ ├── ArmorStats.hpp │ ├── Arrow.cpp │ ├── Arrow.hpp │ ├── CMakeLists.txt │ ├── Chicken.cpp │ ├── Chicken.hpp │ ├── Entity.cpp │ ├── Entity.hpp │ ├── EntityType.hpp │ ├── Item.cpp │ ├── Item.hpp │ ├── LivingEntity.cpp │ ├── LivingEntity.hpp │ └── Mob.hpp ├── events │ ├── CMakeLists.txt │ ├── CancelEvents.cpp │ ├── CancelEvents.hpp │ └── Events.hpp ├── exceptions.hpp ├── generation │ ├── CMakeLists.txt │ ├── features │ │ ├── CMakeLists.txt │ │ ├── surface │ │ │ ├── CMakeLists.txt │ │ │ ├── Vegetation.cpp │ │ │ ├── Vegetation.hpp │ │ │ ├── forestRock.cpp │ │ │ └── forestRock.hpp │ │ ├── tree │ │ │ ├── CMakeLists.txt │ │ │ ├── birch.cpp │ │ │ ├── birch.hpp │ │ │ ├── jungle.cpp │ │ │ ├── jungle.hpp │ │ │ ├── oak.cpp │ │ │ ├── oak.hpp │ │ │ ├── pine.cpp │ │ │ ├── pine.hpp │ │ │ ├── spruce.cpp │ │ │ ├── spruce.hpp │ │ │ ├── tree.cpp │ │ │ └── tree.hpp │ │ └── underground │ │ │ ├── CMakeLists.txt │ │ │ ├── OreVein.cpp │ │ │ └── OreVein.hpp │ ├── generator.cpp │ ├── generator.hpp │ ├── nether.cpp │ ├── nether.hpp │ ├── overworld.cpp │ ├── overworld.hpp │ └── player_constructions │ │ ├── CMakeLists.txt │ │ ├── NetherPortal.cpp │ │ └── NetherPortal.hpp ├── interface │ ├── CMakeLists.txt │ ├── InterfaceContainer.cpp │ ├── InterfaceContainer.hpp │ ├── LogsInterface.cpp │ ├── LogsInterface.hpp │ ├── ManagementInterface.cpp │ ├── ManagementInterface.hpp │ ├── PlayersInterface.cpp │ └── PlayersInterface.hpp ├── items │ ├── CMakeLists.txt │ ├── UsableItem.hpp │ ├── foodItems.hpp │ ├── fuels.hpp │ ├── toolsDamage.hpp │ └── usable-items │ │ ├── Bow.cpp │ │ ├── Bow.hpp │ │ ├── CMakeLists.txt │ │ ├── FlintAndSteel.cpp │ │ ├── FlintAndSteel.hpp │ │ ├── Hoe.cpp │ │ └── Hoe.hpp ├── logging │ ├── CMakeLists.txt │ ├── Registry.cpp │ ├── Registry.hpp │ ├── Sinks.cpp │ ├── Sinks.hpp │ ├── formating.hpp │ └── logging.hpp ├── loot_tables │ ├── CMakeLists.txt │ ├── LootTable.cpp │ ├── LootTable.hpp │ ├── LootTables.cpp │ ├── LootTables.hpp │ ├── Pool.cpp │ ├── Pool.hpp │ ├── conditions │ │ ├── Alternative.cpp │ │ ├── Alternative.hpp │ │ ├── BlockStateProperties.cpp │ │ ├── BlockStateProperties.hpp │ │ ├── CMakeLists.txt │ │ ├── Condition.cpp │ │ ├── Condition.hpp │ │ ├── DamageSourceProperties.cpp │ │ ├── DamageSourceProperties.hpp │ │ ├── EntityProperties.cpp │ │ ├── EntityProperties.hpp │ │ ├── EntityScores.cpp │ │ ├── EntityScores.hpp │ │ ├── Inverted.cpp │ │ ├── Inverted.hpp │ │ ├── KilledByPlayer.cpp │ │ ├── KilledByPlayer.hpp │ │ ├── LocationCheck.cpp │ │ ├── LocationCheck.hpp │ │ ├── MatchTool.cpp │ │ ├── MatchTool.hpp │ │ ├── RandomChance.cpp │ │ ├── RandomChance.hpp │ │ ├── RandomChanceWithLooting.cpp │ │ ├── RandomChanceWithLooting.hpp │ │ ├── Reference.cpp │ │ ├── Reference.hpp │ │ ├── SurvivesExplosion.cpp │ │ ├── SurvivesExplosion.hpp │ │ ├── TableBonus.cpp │ │ ├── TableBonus.hpp │ │ ├── TimeCheck.cpp │ │ ├── TimeCheck.hpp │ │ ├── ValueCheck.cpp │ │ ├── ValueCheck.hpp │ │ ├── WeatherCheck.cpp │ │ ├── WeatherCheck.hpp │ │ ├── addDefaultConditionCreators.cpp │ │ └── allConditions.hpp │ ├── context │ │ ├── AdvancementEntity.cpp │ │ ├── AdvancementEntity.hpp │ │ ├── AdvancementReward.cpp │ │ ├── AdvancementReward.hpp │ │ ├── Barter.cpp │ │ ├── Barter.hpp │ │ ├── Block.cpp │ │ ├── Block.hpp │ │ ├── CMakeLists.txt │ │ ├── Chest.cpp │ │ ├── Chest.hpp │ │ ├── Command.cpp │ │ ├── Command.hpp │ │ ├── Empty.cpp │ │ ├── Empty.hpp │ │ ├── Entity.cpp │ │ ├── Entity.hpp │ │ ├── Fishing.cpp │ │ ├── Fishing.hpp │ │ ├── Generic.cpp │ │ ├── Generic.hpp │ │ ├── Gift.cpp │ │ ├── Gift.hpp │ │ ├── LootContext.cpp │ │ ├── LootContext.hpp │ │ ├── Selector.cpp │ │ └── Selector.hpp │ ├── entries │ │ ├── Alternative.cpp │ │ ├── Alternative.hpp │ │ ├── CMakeLists.txt │ │ ├── Dynamic.cpp │ │ ├── Dynamic.hpp │ │ ├── Empty.cpp │ │ ├── Empty.hpp │ │ ├── Entry.cpp │ │ ├── Entry.hpp │ │ ├── Group.cpp │ │ ├── Group.hpp │ │ ├── Item.cpp │ │ ├── Item.hpp │ │ ├── ItemTag.cpp │ │ ├── ItemTag.hpp │ │ ├── LootTable.cpp │ │ ├── LootTable.hpp │ │ ├── Sequence.cpp │ │ ├── Sequence.hpp │ │ ├── addDefaultEntryCreators.cpp │ │ └── allEntries.hpp │ ├── functions │ │ ├── ApplyBonus.cpp │ │ ├── ApplyBonus.hpp │ │ ├── CMakeLists.txt │ │ ├── CopyBlockStates.cpp │ │ ├── CopyBlockStates.hpp │ │ ├── CopyNBT.cpp │ │ ├── CopyNBT.hpp │ │ ├── CopyName.cpp │ │ ├── CopyName.hpp │ │ ├── EnchantRandomly.cpp │ │ ├── EnchantRandomly.hpp │ │ ├── EnchantWithLevels.cpp │ │ ├── EnchantWithLevels.hpp │ │ ├── ExplorationMapProperties.cpp │ │ ├── ExplorationMapProperties.hpp │ │ ├── ExplosionDecay.cpp │ │ ├── ExplosionDecay.hpp │ │ ├── FillPlayerHead.cpp │ │ ├── FillPlayerHead.hpp │ │ ├── Function.cpp │ │ ├── Function.hpp │ │ ├── FurnaceSmelt.cpp │ │ ├── FurnaceSmelt.hpp │ │ ├── LimitCount.cpp │ │ ├── LimitCount.hpp │ │ ├── LootingEnchant.cpp │ │ ├── LootingEnchant.hpp │ │ ├── SetAttributes.cpp │ │ ├── SetAttributes.hpp │ │ ├── SetBannerPattern.cpp │ │ ├── SetBannerPattern.hpp │ │ ├── SetContents.cpp │ │ ├── SetContents.hpp │ │ ├── SetCount.cpp │ │ ├── SetCount.hpp │ │ ├── SetDamage.cpp │ │ ├── SetDamage.hpp │ │ ├── SetEnchantments.cpp │ │ ├── SetEnchantments.hpp │ │ ├── SetInstrument.cpp │ │ ├── SetInstrument.hpp │ │ ├── SetLootTable.cpp │ │ ├── SetLootTable.hpp │ │ ├── SetLore.cpp │ │ ├── SetLore.hpp │ │ ├── SetNBT.cpp │ │ ├── SetNBT.hpp │ │ ├── SetName.cpp │ │ ├── SetName.hpp │ │ ├── SetPotion.cpp │ │ ├── SetPotion.hpp │ │ ├── SetStewEffect.cpp │ │ ├── SetStewEffect.hpp │ │ ├── addDefaultFunctionCreators.cpp │ │ └── allFunctions.hpp │ └── rolls │ │ ├── Binomial.cpp │ │ ├── Binomial.hpp │ │ ├── CMakeLists.txt │ │ ├── Constant.cpp │ │ ├── Constant.hpp │ │ ├── Roll.cpp │ │ ├── Roll.hpp │ │ ├── Score.cpp │ │ ├── Score.hpp │ │ ├── Uniform.cpp │ │ ├── Uniform.hpp │ │ ├── addDefaultRollCreators.cpp │ │ └── allRolls.hpp ├── main.cpp ├── math │ ├── CMakeLists.txt │ ├── Math.cpp │ ├── Math.hpp │ ├── Math_unittest.cpp │ ├── Vector2.hpp │ ├── Vector3.cpp │ └── Vector3.hpp ├── nbt.c ├── nbt.cpp ├── nbt.hpp ├── nbt_unittest.cpp ├── nnbt.hpp ├── options.hpp ├── protocol │ ├── CMakeLists.txt │ ├── ClientPackets.cpp │ ├── ClientPackets.hpp │ ├── PacketUtils.hpp │ ├── ParseExceptions.hpp │ ├── ServerPackets.cpp │ ├── ServerPackets.hpp │ ├── Structures.cpp │ ├── Structures.hpp │ ├── WorldEvent.hpp │ ├── common.hpp │ ├── container │ │ ├── CMakeLists.txt │ │ ├── Container.cpp │ │ ├── Container.hpp │ │ ├── CraftingTable.cpp │ │ ├── CraftingTable.hpp │ │ ├── Furnace.cpp │ │ ├── Furnace.hpp │ │ ├── Inventory.cpp │ │ └── Inventory.hpp │ ├── metadata.cpp │ ├── metadata.hpp │ ├── serialization │ │ ├── CMakeLists.txt │ │ ├── add.cpp │ │ ├── add.hpp │ │ ├── addPrimaryType.hpp │ │ ├── pop.hpp │ │ ├── popPrimaryType.hpp │ │ └── typeSerialization_unittest.cpp │ └── typeSerialization.hpp ├── protocol_id_converter │ ├── CMakeLists.txt │ ├── blockDataConverter.cpp │ ├── blockDataConverter.hpp │ ├── blockIdConverter.cpp │ ├── blockIdConverter.hpp │ ├── itemConverter.cpp │ ├── itemConverter.hpp │ ├── soundEventConverter.cpp │ └── soundEventConverter.hpp ├── recipes │ ├── Blasting.cpp │ ├── Blasting.hpp │ ├── CMakeLists.txt │ ├── CampfireCooking.cpp │ ├── CampfireCooking.hpp │ ├── CraftingShaped.cpp │ ├── CraftingShaped.hpp │ ├── CraftingShapeless.cpp │ ├── CraftingShapeless.hpp │ ├── Recipes.cpp │ ├── Recipes.hpp │ ├── Smelting.cpp │ ├── Smelting.hpp │ ├── Smithing.cpp │ ├── Smithing.hpp │ ├── Smoking.cpp │ ├── Smoking.hpp │ ├── SpecialArmorDye.cpp │ ├── SpecialArmorDye.hpp │ ├── SpecialBannerDuplicate.cpp │ ├── SpecialBannerDuplicate.hpp │ ├── SpecialBookCloning.cpp │ ├── SpecialBookCloning.hpp │ ├── SpecialFireworkRocket.cpp │ ├── SpecialFireworkRocket.hpp │ ├── SpecialFireworkStar.cpp │ ├── SpecialFireworkStar.hpp │ ├── SpecialFireworkStarFade.cpp │ ├── SpecialFireworkStarFade.hpp │ ├── SpecialMapCloning.cpp │ ├── SpecialMapCloning.hpp │ ├── SpecialMapExtending.cpp │ ├── SpecialMapExtending.hpp │ ├── SpecialRepairItem.cpp │ ├── SpecialRepairItem.hpp │ ├── SpecialShieldDecoration.cpp │ ├── SpecialShieldDecoration.hpp │ ├── SpecialShulkerboxColoring.cpp │ ├── SpecialShulkerboxColoring.hpp │ ├── SpecialSuspiciousStew.cpp │ ├── SpecialSuspiciousStew.hpp │ ├── SpecialTippedArrow.cpp │ ├── SpecialTippedArrow.hpp │ ├── StoneCutting.cpp │ └── StoneCutting.hpp ├── registry │ ├── Biome.cpp │ ├── Biome.hpp │ ├── CMakeLists.txt │ ├── Chat.cpp │ ├── Chat.hpp │ ├── Dimension.cpp │ ├── Dimension.hpp │ ├── MasterRegistry.cpp │ ├── MasterRegistry.hpp │ ├── Registry.cpp │ └── Registry.hpp ├── scoreboard │ ├── CMakeLists.txt │ ├── Objectives.cpp │ ├── Objectives.hpp │ ├── Scoreboard.cpp │ ├── Scoreboard.hpp │ ├── ScoreboardSystem.cpp │ ├── ScoreboardSystem.hpp │ ├── Teams.cpp │ └── Teams.hpp ├── thread_pool │ ├── CMakeLists.txt │ ├── Pool.cpp │ ├── Pool.hpp │ ├── PriorityThreadPool.cpp │ ├── PriorityThreadPool.hpp │ ├── PriorityThreadWorker.cpp │ ├── PriorityThreadWorker.hpp │ ├── Semaphore.hpp │ ├── Task.cpp │ ├── Task.hpp │ ├── ThreadPool.cpp │ ├── ThreadPool.hpp │ ├── ThreadPoolUtility.hpp │ ├── ThreadWorker.cpp │ └── ThreadWorker.hpp ├── tiles-entities │ ├── CMakeLists.txt │ ├── Furnace.cpp │ ├── Furnace.hpp │ ├── TileEntity.hpp │ ├── TileEntityList.cpp │ └── TileEntityList.hpp ├── types.cpp ├── types.hpp ├── utility │ ├── CMakeLists.txt │ ├── PseudoRandomGenerator.cpp │ ├── PseudoRandomGenerator.hpp │ ├── RandomTickBlockFunctions.hpp │ ├── SharedFromThis.hpp │ └── random_tick_block_functions │ │ ├── CMakeLists.txt │ │ ├── Farmland.cpp │ │ ├── Farmland.hpp │ │ ├── Wheat.cpp │ │ └── Wheat.hpp ├── whitelist │ ├── CMakeLists.txt │ ├── Whitelist.cpp │ └── Whitelist.hpp └── world_storage │ ├── CMakeLists.txt │ ├── ChunkColumn.cpp │ ├── ChunkColumn.hpp │ ├── DynamicStorage.hpp │ ├── Item.hpp │ ├── Level.cpp │ ├── Level.hpp │ ├── LevelData.hpp │ ├── Palette.cpp │ ├── Palette.hpp │ ├── Persistence.cpp │ ├── Persistence.hpp │ ├── PlayerData.hpp │ ├── Section.cpp │ ├── Section.hpp │ └── tests │ └── DynamicStorage_test.cpp ├── cxx_flag_overrides.cmake ├── docker-compose.yaml ├── docs ├── .gitignore ├── Doxyfile ├── ci.sh └── logo.png └── generators ├── .gitignore ├── protocol_block_ids.py └── requirements.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/.clang-format -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/format-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/.github/workflows/format-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/README.md -------------------------------------------------------------------------------- /blocks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/blocks.cmake -------------------------------------------------------------------------------- /boost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/boost.cmake -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /c_flag_overrides.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/c_flag_overrides.cmake -------------------------------------------------------------------------------- /cubic-server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/Chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Chat.cpp -------------------------------------------------------------------------------- /cubic-server/Chat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Chat.hpp -------------------------------------------------------------------------------- /cubic-server/Checksum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Checksum.cpp -------------------------------------------------------------------------------- /cubic-server/Checksum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Checksum.hpp -------------------------------------------------------------------------------- /cubic-server/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Client.cpp -------------------------------------------------------------------------------- /cubic-server/Client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Client.hpp -------------------------------------------------------------------------------- /cubic-server/CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/CommandLine.cpp -------------------------------------------------------------------------------- /cubic-server/CommandLine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/CommandLine.hpp -------------------------------------------------------------------------------- /cubic-server/CompressionUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/CompressionUtils.cpp -------------------------------------------------------------------------------- /cubic-server/CompressionUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/CompressionUtils.hpp -------------------------------------------------------------------------------- /cubic-server/Dimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Dimension.cpp -------------------------------------------------------------------------------- /cubic-server/Dimension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Dimension.hpp -------------------------------------------------------------------------------- /cubic-server/EASEncryptionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/EASEncryptionHandler.cpp -------------------------------------------------------------------------------- /cubic-server/EASEncryptionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/EASEncryptionHandler.hpp -------------------------------------------------------------------------------- /cubic-server/Permissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Permissions.cpp -------------------------------------------------------------------------------- /cubic-server/Permissions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Permissions.hpp -------------------------------------------------------------------------------- /cubic-server/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Player.cpp -------------------------------------------------------------------------------- /cubic-server/Player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Player.hpp -------------------------------------------------------------------------------- /cubic-server/PlayerAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/PlayerAttributes.cpp -------------------------------------------------------------------------------- /cubic-server/PlayerAttributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/PlayerAttributes.hpp -------------------------------------------------------------------------------- /cubic-server/PluginInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/PluginInterface.cpp -------------------------------------------------------------------------------- /cubic-server/PluginInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/PluginInterface.hpp -------------------------------------------------------------------------------- /cubic-server/PluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/PluginManager.cpp -------------------------------------------------------------------------------- /cubic-server/PluginManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/PluginManager.hpp -------------------------------------------------------------------------------- /cubic-server/PrometheusExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/PrometheusExporter.cpp -------------------------------------------------------------------------------- /cubic-server/PrometheusExporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/PrometheusExporter.hpp -------------------------------------------------------------------------------- /cubic-server/RSAEncryptionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/RSAEncryptionHandler.cpp -------------------------------------------------------------------------------- /cubic-server/RSAEncryptionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/RSAEncryptionHandler.hpp -------------------------------------------------------------------------------- /cubic-server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Server.cpp -------------------------------------------------------------------------------- /cubic-server/Server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/Server.hpp -------------------------------------------------------------------------------- /cubic-server/SoundList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/SoundList.hpp -------------------------------------------------------------------------------- /cubic-server/SoundSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/SoundSystem.cpp -------------------------------------------------------------------------------- /cubic-server/SoundSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/SoundSystem.hpp -------------------------------------------------------------------------------- /cubic-server/TickClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/TickClock.cpp -------------------------------------------------------------------------------- /cubic-server/TickClock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/TickClock.hpp -------------------------------------------------------------------------------- /cubic-server/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/World.cpp -------------------------------------------------------------------------------- /cubic-server/World.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/World.hpp -------------------------------------------------------------------------------- /cubic-server/WorldGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/WorldGroup.cpp -------------------------------------------------------------------------------- /cubic-server/WorldGroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/WorldGroup.hpp -------------------------------------------------------------------------------- /cubic-server/ai/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/ai/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/ai/ai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/ai/ai.hpp -------------------------------------------------------------------------------- /cubic-server/ai/wandering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/ai/wandering.cpp -------------------------------------------------------------------------------- /cubic-server/ai/wandering.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/ai/wandering.hpp -------------------------------------------------------------------------------- /cubic-server/allCommands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/allCommands.hpp -------------------------------------------------------------------------------- /cubic-server/chat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/chat/ChatRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/ChatRegistry.cpp -------------------------------------------------------------------------------- /cubic-server/chat/ChatRegistry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/ChatRegistry.hpp -------------------------------------------------------------------------------- /cubic-server/chat/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/Message.cpp -------------------------------------------------------------------------------- /cubic-server/chat/Message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/Message.hpp -------------------------------------------------------------------------------- /cubic-server/chat/events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events.hpp -------------------------------------------------------------------------------- /cubic-server/chat/events/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/chat/events/Click.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/Click.cpp -------------------------------------------------------------------------------- /cubic-server/chat/events/Click.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/Click.hpp -------------------------------------------------------------------------------- /cubic-server/chat/events/Hover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/Hover.cpp -------------------------------------------------------------------------------- /cubic-server/chat/events/Hover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/Hover.hpp -------------------------------------------------------------------------------- /cubic-server/chat/events/clicks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/clicks/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/chat/events/clicks/ChangePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/clicks/ChangePage.cpp -------------------------------------------------------------------------------- /cubic-server/chat/events/clicks/ChangePage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/clicks/ChangePage.hpp -------------------------------------------------------------------------------- /cubic-server/chat/events/clicks/CopyToClipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/clicks/CopyToClipboard.cpp -------------------------------------------------------------------------------- /cubic-server/chat/events/clicks/CopyToClipboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/clicks/CopyToClipboard.hpp -------------------------------------------------------------------------------- /cubic-server/chat/events/clicks/OpenUrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/clicks/OpenUrl.cpp -------------------------------------------------------------------------------- /cubic-server/chat/events/clicks/OpenUrl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/clicks/OpenUrl.hpp -------------------------------------------------------------------------------- /cubic-server/chat/events/clicks/RunCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/clicks/RunCommand.cpp -------------------------------------------------------------------------------- /cubic-server/chat/events/clicks/RunCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/clicks/RunCommand.hpp -------------------------------------------------------------------------------- /cubic-server/chat/events/clicks/SuggestCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/clicks/SuggestCommand.cpp -------------------------------------------------------------------------------- /cubic-server/chat/events/clicks/SuggestCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/clicks/SuggestCommand.hpp -------------------------------------------------------------------------------- /cubic-server/chat/events/hovers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/hovers/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/chat/events/hovers/EntityEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/hovers/EntityEvent.cpp -------------------------------------------------------------------------------- /cubic-server/chat/events/hovers/EntityEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/hovers/EntityEvent.hpp -------------------------------------------------------------------------------- /cubic-server/chat/events/hovers/ItemEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/hovers/ItemEvent.cpp -------------------------------------------------------------------------------- /cubic-server/chat/events/hovers/ItemEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/hovers/ItemEvent.hpp -------------------------------------------------------------------------------- /cubic-server/chat/events/hovers/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/hovers/Text.cpp -------------------------------------------------------------------------------- /cubic-server/chat/events/hovers/Text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/events/hovers/Text.hpp -------------------------------------------------------------------------------- /cubic-server/chat/translationFromKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/translationFromKey.cpp -------------------------------------------------------------------------------- /cubic-server/chat/translationFromKey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/chat/translationFromKey.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/command_parser/CommandParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/CommandParser.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/CommandParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/CommandParser.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Armor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Armor.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Armor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Armor.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/CommandBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/CommandBase.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Deop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Deop.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Deop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Deop.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/DumpChunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/DumpChunk.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/DumpChunk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/DumpChunk.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Gamemode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Gamemode.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Gamemode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Gamemode.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Help.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Help.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Help.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/InventoryDump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/InventoryDump.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Log.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Log.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Loot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Loot.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Loot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Loot.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/MSPT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/MSPT.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/MSPT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/MSPT.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Op.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Op.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/QuestionMark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/QuestionMark.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/QuestionMark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/QuestionMark.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Reload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Reload.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Reload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Reload.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/SaveRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/SaveRegion.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/SaveRegion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/SaveRegion.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Scoreboard.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Scoreboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Scoreboard.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Seed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Seed.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Seed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Seed.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Stop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Stop.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Stop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Stop.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Subtitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Subtitle.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Subtitle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Subtitle.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Teleport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Teleport.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Teleport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Teleport.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Time.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Time.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Title.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Title.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Title.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/TitleTimes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/TitleTimes.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/TitleTimes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/TitleTimes.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Tps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Tps.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/commands/Tps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/commands/Tps.hpp -------------------------------------------------------------------------------- /cubic-server/command_parser/selectors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/selectors/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/command_parser/selectors/selectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/selectors/selectors.cpp -------------------------------------------------------------------------------- /cubic-server/command_parser/selectors/selectors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/command_parser/selectors/selectors.hpp -------------------------------------------------------------------------------- /cubic-server/concept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/concept.hpp -------------------------------------------------------------------------------- /cubic-server/configuration/ArgumentHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/ArgumentHolder.cpp -------------------------------------------------------------------------------- /cubic-server/configuration/ArgumentHolder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/ArgumentHolder.hpp -------------------------------------------------------------------------------- /cubic-server/configuration/ArgumentsParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/ArgumentsParser.cpp -------------------------------------------------------------------------------- /cubic-server/configuration/ArgumentsParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/ArgumentsParser.hpp -------------------------------------------------------------------------------- /cubic-server/configuration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/configuration/ConfigHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/ConfigHandler.cpp -------------------------------------------------------------------------------- /cubic-server/configuration/ConfigHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/ConfigHandler.hpp -------------------------------------------------------------------------------- /cubic-server/configuration/ConfigHandler_unittest.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cubic-server/configuration/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/Node.cpp -------------------------------------------------------------------------------- /cubic-server/configuration/Node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/Node.hpp -------------------------------------------------------------------------------- /cubic-server/configuration/Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/Value.cpp -------------------------------------------------------------------------------- /cubic-server/configuration/Value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/Value.hpp -------------------------------------------------------------------------------- /cubic-server/configuration/conversion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/conversion.hpp -------------------------------------------------------------------------------- /cubic-server/configuration/details.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/details.hpp -------------------------------------------------------------------------------- /cubic-server/configuration/errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/configuration/errors.hpp -------------------------------------------------------------------------------- /cubic-server/default/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/default/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/default/DefaultWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/default/DefaultWorld.cpp -------------------------------------------------------------------------------- /cubic-server/default/DefaultWorld.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/default/DefaultWorld.hpp -------------------------------------------------------------------------------- /cubic-server/default/DefaultWorldGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/default/DefaultWorldGroup.cpp -------------------------------------------------------------------------------- /cubic-server/default/DefaultWorldGroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/default/DefaultWorldGroup.hpp -------------------------------------------------------------------------------- /cubic-server/default/Overworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/default/Overworld.cpp -------------------------------------------------------------------------------- /cubic-server/default/Overworld.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/default/Overworld.hpp -------------------------------------------------------------------------------- /cubic-server/default/TheEnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/default/TheEnd.cpp -------------------------------------------------------------------------------- /cubic-server/default/TheEnd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/default/TheEnd.hpp -------------------------------------------------------------------------------- /cubic-server/default/TheNether.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/default/TheNether.cpp -------------------------------------------------------------------------------- /cubic-server/default/TheNether.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/default/TheNether.hpp -------------------------------------------------------------------------------- /cubic-server/entities/ArmorStats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/ArmorStats.hpp -------------------------------------------------------------------------------- /cubic-server/entities/Arrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/Arrow.cpp -------------------------------------------------------------------------------- /cubic-server/entities/Arrow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/Arrow.hpp -------------------------------------------------------------------------------- /cubic-server/entities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/entities/Chicken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/Chicken.cpp -------------------------------------------------------------------------------- /cubic-server/entities/Chicken.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/Chicken.hpp -------------------------------------------------------------------------------- /cubic-server/entities/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/Entity.cpp -------------------------------------------------------------------------------- /cubic-server/entities/Entity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/Entity.hpp -------------------------------------------------------------------------------- /cubic-server/entities/EntityType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/EntityType.hpp -------------------------------------------------------------------------------- /cubic-server/entities/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/Item.cpp -------------------------------------------------------------------------------- /cubic-server/entities/Item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/Item.hpp -------------------------------------------------------------------------------- /cubic-server/entities/LivingEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/LivingEntity.cpp -------------------------------------------------------------------------------- /cubic-server/entities/LivingEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/LivingEntity.hpp -------------------------------------------------------------------------------- /cubic-server/entities/Mob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/entities/Mob.hpp -------------------------------------------------------------------------------- /cubic-server/events/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/events/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/events/CancelEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/events/CancelEvents.cpp -------------------------------------------------------------------------------- /cubic-server/events/CancelEvents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/events/CancelEvents.hpp -------------------------------------------------------------------------------- /cubic-server/events/Events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/events/Events.hpp -------------------------------------------------------------------------------- /cubic-server/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/exceptions.hpp -------------------------------------------------------------------------------- /cubic-server/generation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/generation/features/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/generation/features/surface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/surface/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/generation/features/surface/Vegetation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/surface/Vegetation.cpp -------------------------------------------------------------------------------- /cubic-server/generation/features/surface/Vegetation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/surface/Vegetation.hpp -------------------------------------------------------------------------------- /cubic-server/generation/features/surface/forestRock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/surface/forestRock.cpp -------------------------------------------------------------------------------- /cubic-server/generation/features/surface/forestRock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/surface/forestRock.hpp -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/birch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/birch.cpp -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/birch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/birch.hpp -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/jungle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/jungle.cpp -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/jungle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/jungle.hpp -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/oak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/oak.cpp -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/oak.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/oak.hpp -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/pine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/pine.cpp -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/pine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/pine.hpp -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/spruce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/spruce.cpp -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/spruce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/spruce.hpp -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/tree.cpp -------------------------------------------------------------------------------- /cubic-server/generation/features/tree/tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/tree/tree.hpp -------------------------------------------------------------------------------- /cubic-server/generation/features/underground/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/underground/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/generation/features/underground/OreVein.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/underground/OreVein.cpp -------------------------------------------------------------------------------- /cubic-server/generation/features/underground/OreVein.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/features/underground/OreVein.hpp -------------------------------------------------------------------------------- /cubic-server/generation/generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/generator.cpp -------------------------------------------------------------------------------- /cubic-server/generation/generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/generator.hpp -------------------------------------------------------------------------------- /cubic-server/generation/nether.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/nether.cpp -------------------------------------------------------------------------------- /cubic-server/generation/nether.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/nether.hpp -------------------------------------------------------------------------------- /cubic-server/generation/overworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/overworld.cpp -------------------------------------------------------------------------------- /cubic-server/generation/overworld.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/overworld.hpp -------------------------------------------------------------------------------- /cubic-server/generation/player_constructions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/player_constructions/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/generation/player_constructions/NetherPortal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/player_constructions/NetherPortal.cpp -------------------------------------------------------------------------------- /cubic-server/generation/player_constructions/NetherPortal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/generation/player_constructions/NetherPortal.hpp -------------------------------------------------------------------------------- /cubic-server/interface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/interface/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/interface/InterfaceContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/interface/InterfaceContainer.cpp -------------------------------------------------------------------------------- /cubic-server/interface/InterfaceContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/interface/InterfaceContainer.hpp -------------------------------------------------------------------------------- /cubic-server/interface/LogsInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/interface/LogsInterface.cpp -------------------------------------------------------------------------------- /cubic-server/interface/LogsInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/interface/LogsInterface.hpp -------------------------------------------------------------------------------- /cubic-server/interface/ManagementInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/interface/ManagementInterface.cpp -------------------------------------------------------------------------------- /cubic-server/interface/ManagementInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/interface/ManagementInterface.hpp -------------------------------------------------------------------------------- /cubic-server/interface/PlayersInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/interface/PlayersInterface.cpp -------------------------------------------------------------------------------- /cubic-server/interface/PlayersInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/interface/PlayersInterface.hpp -------------------------------------------------------------------------------- /cubic-server/items/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/items/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/items/UsableItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/items/UsableItem.hpp -------------------------------------------------------------------------------- /cubic-server/items/foodItems.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/items/foodItems.hpp -------------------------------------------------------------------------------- /cubic-server/items/fuels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/items/fuels.hpp -------------------------------------------------------------------------------- /cubic-server/items/toolsDamage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/items/toolsDamage.hpp -------------------------------------------------------------------------------- /cubic-server/items/usable-items/Bow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/items/usable-items/Bow.cpp -------------------------------------------------------------------------------- /cubic-server/items/usable-items/Bow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/items/usable-items/Bow.hpp -------------------------------------------------------------------------------- /cubic-server/items/usable-items/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/items/usable-items/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/items/usable-items/FlintAndSteel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/items/usable-items/FlintAndSteel.cpp -------------------------------------------------------------------------------- /cubic-server/items/usable-items/FlintAndSteel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/items/usable-items/FlintAndSteel.hpp -------------------------------------------------------------------------------- /cubic-server/items/usable-items/Hoe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/items/usable-items/Hoe.cpp -------------------------------------------------------------------------------- /cubic-server/items/usable-items/Hoe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/items/usable-items/Hoe.hpp -------------------------------------------------------------------------------- /cubic-server/logging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/logging/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/logging/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/logging/Registry.cpp -------------------------------------------------------------------------------- /cubic-server/logging/Registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/logging/Registry.hpp -------------------------------------------------------------------------------- /cubic-server/logging/Sinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/logging/Sinks.cpp -------------------------------------------------------------------------------- /cubic-server/logging/Sinks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/logging/Sinks.hpp -------------------------------------------------------------------------------- /cubic-server/logging/formating.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/logging/formating.hpp -------------------------------------------------------------------------------- /cubic-server/logging/logging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/logging/logging.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/loot_tables/LootTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/LootTable.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/LootTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/LootTable.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/LootTables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/LootTables.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/LootTables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/LootTables.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/Pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/Pool.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/Pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/Pool.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/Alternative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/Alternative.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/Alternative.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/Alternative.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/BlockStateProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/BlockStateProperties.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/BlockStateProperties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/BlockStateProperties.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/Condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/Condition.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/Condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/Condition.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/DamageSourceProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/DamageSourceProperties.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/DamageSourceProperties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/DamageSourceProperties.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/EntityProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/EntityProperties.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/EntityProperties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/EntityProperties.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/EntityScores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/EntityScores.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/EntityScores.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/EntityScores.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/Inverted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/Inverted.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/Inverted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/Inverted.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/KilledByPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/KilledByPlayer.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/KilledByPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/KilledByPlayer.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/LocationCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/LocationCheck.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/LocationCheck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/LocationCheck.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/MatchTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/MatchTool.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/MatchTool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/MatchTool.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/RandomChance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/RandomChance.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/RandomChance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/RandomChance.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/RandomChanceWithLooting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/RandomChanceWithLooting.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/RandomChanceWithLooting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/RandomChanceWithLooting.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/Reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/Reference.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/Reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/Reference.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/SurvivesExplosion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/SurvivesExplosion.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/SurvivesExplosion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/SurvivesExplosion.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/TableBonus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/TableBonus.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/TableBonus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/TableBonus.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/TimeCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/TimeCheck.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/TimeCheck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/TimeCheck.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/ValueCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/ValueCheck.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/ValueCheck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/ValueCheck.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/WeatherCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/WeatherCheck.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/WeatherCheck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/WeatherCheck.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/addDefaultConditionCreators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/addDefaultConditionCreators.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/conditions/allConditions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/conditions/allConditions.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/AdvancementEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/AdvancementEntity.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/AdvancementEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/AdvancementEntity.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/AdvancementReward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/AdvancementReward.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/AdvancementReward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/AdvancementReward.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Barter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Barter.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Barter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Barter.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Block.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Block.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Chest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Chest.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Chest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Chest.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Command.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Command.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Empty.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Empty.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Entity.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Entity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Entity.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Fishing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Fishing.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Fishing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Fishing.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Generic.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Generic.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Gift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Gift.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Gift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Gift.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/LootContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/LootContext.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/LootContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/LootContext.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Selector.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/context/Selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/context/Selector.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Alternative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Alternative.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Alternative.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Alternative.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Dynamic.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Dynamic.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Empty.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Empty.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Entry.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Entry.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Group.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Group.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Item.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Item.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/ItemTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/ItemTag.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/ItemTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/ItemTag.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/LootTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/LootTable.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/LootTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/LootTable.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Sequence.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/Sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/Sequence.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/addDefaultEntryCreators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/addDefaultEntryCreators.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/entries/allEntries.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/entries/allEntries.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/ApplyBonus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/ApplyBonus.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/ApplyBonus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/ApplyBonus.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/CopyBlockStates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/CopyBlockStates.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/CopyBlockStates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/CopyBlockStates.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/CopyNBT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/CopyNBT.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/CopyNBT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/CopyNBT.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/CopyName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/CopyName.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/CopyName.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/CopyName.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/EnchantRandomly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/EnchantRandomly.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/EnchantRandomly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/EnchantRandomly.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/EnchantWithLevels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/EnchantWithLevels.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/EnchantWithLevels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/EnchantWithLevels.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/ExplorationMapProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/ExplorationMapProperties.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/ExplorationMapProperties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/ExplorationMapProperties.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/ExplosionDecay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/ExplosionDecay.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/ExplosionDecay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/ExplosionDecay.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/FillPlayerHead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/FillPlayerHead.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/FillPlayerHead.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/FillPlayerHead.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/Function.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/Function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/Function.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/FurnaceSmelt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/FurnaceSmelt.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/FurnaceSmelt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/FurnaceSmelt.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/LimitCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/LimitCount.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/LimitCount.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/LimitCount.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/LootingEnchant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/LootingEnchant.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/LootingEnchant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/LootingEnchant.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetAttributes.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetAttributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetAttributes.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetBannerPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetBannerPattern.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetBannerPattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetBannerPattern.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetContents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetContents.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetContents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetContents.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetCount.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetCount.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetCount.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetDamage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetDamage.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetDamage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetDamage.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetEnchantments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetEnchantments.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetEnchantments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetEnchantments.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetInstrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetInstrument.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetInstrument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetInstrument.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetLootTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetLootTable.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetLootTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetLootTable.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetLore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetLore.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetLore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetLore.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetNBT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetNBT.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetNBT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetNBT.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetName.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetName.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetName.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetPotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetPotion.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetPotion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetPotion.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetStewEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetStewEffect.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/SetStewEffect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/SetStewEffect.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/addDefaultFunctionCreators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/addDefaultFunctionCreators.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/functions/allFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/functions/allFunctions.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/Binomial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/Binomial.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/Binomial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/Binomial.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/Constant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/Constant.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/Constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/Constant.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/Roll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/Roll.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/Roll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/Roll.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/Score.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/Score.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/Score.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/Score.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/Uniform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/Uniform.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/Uniform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/Uniform.hpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/addDefaultRollCreators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/addDefaultRollCreators.cpp -------------------------------------------------------------------------------- /cubic-server/loot_tables/rolls/allRolls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/loot_tables/rolls/allRolls.hpp -------------------------------------------------------------------------------- /cubic-server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/main.cpp -------------------------------------------------------------------------------- /cubic-server/math/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/math/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/math/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/math/Math.cpp -------------------------------------------------------------------------------- /cubic-server/math/Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/math/Math.hpp -------------------------------------------------------------------------------- /cubic-server/math/Math_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/math/Math_unittest.cpp -------------------------------------------------------------------------------- /cubic-server/math/Vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/math/Vector2.hpp -------------------------------------------------------------------------------- /cubic-server/math/Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/math/Vector3.cpp -------------------------------------------------------------------------------- /cubic-server/math/Vector3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/math/Vector3.hpp -------------------------------------------------------------------------------- /cubic-server/nbt.c: -------------------------------------------------------------------------------- 1 | #define NBT_IMPLEMENTATION 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /cubic-server/nbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/nbt.cpp -------------------------------------------------------------------------------- /cubic-server/nbt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/nbt.hpp -------------------------------------------------------------------------------- /cubic-server/nbt_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/nbt_unittest.cpp -------------------------------------------------------------------------------- /cubic-server/nnbt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/nnbt.hpp -------------------------------------------------------------------------------- /cubic-server/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/options.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/protocol/ClientPackets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/ClientPackets.cpp -------------------------------------------------------------------------------- /cubic-server/protocol/ClientPackets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/ClientPackets.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/PacketUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/PacketUtils.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/ParseExceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/ParseExceptions.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/ServerPackets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/ServerPackets.cpp -------------------------------------------------------------------------------- /cubic-server/protocol/ServerPackets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/ServerPackets.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/Structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/Structures.cpp -------------------------------------------------------------------------------- /cubic-server/protocol/Structures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/Structures.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/WorldEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/WorldEvent.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/common.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/container/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/container/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/protocol/container/Container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/container/Container.cpp -------------------------------------------------------------------------------- /cubic-server/protocol/container/Container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/container/Container.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/container/CraftingTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/container/CraftingTable.cpp -------------------------------------------------------------------------------- /cubic-server/protocol/container/CraftingTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/container/CraftingTable.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/container/Furnace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/container/Furnace.cpp -------------------------------------------------------------------------------- /cubic-server/protocol/container/Furnace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/container/Furnace.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/container/Inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/container/Inventory.cpp -------------------------------------------------------------------------------- /cubic-server/protocol/container/Inventory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/container/Inventory.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/metadata.cpp -------------------------------------------------------------------------------- /cubic-server/protocol/metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/metadata.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/serialization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/serialization/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/protocol/serialization/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/serialization/add.cpp -------------------------------------------------------------------------------- /cubic-server/protocol/serialization/add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/serialization/add.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/serialization/addPrimaryType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/serialization/addPrimaryType.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/serialization/pop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/serialization/pop.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/serialization/popPrimaryType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/serialization/popPrimaryType.hpp -------------------------------------------------------------------------------- /cubic-server/protocol/serialization/typeSerialization_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/serialization/typeSerialization_unittest.cpp -------------------------------------------------------------------------------- /cubic-server/protocol/typeSerialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol/typeSerialization.hpp -------------------------------------------------------------------------------- /cubic-server/protocol_id_converter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol_id_converter/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/protocol_id_converter/blockDataConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol_id_converter/blockDataConverter.cpp -------------------------------------------------------------------------------- /cubic-server/protocol_id_converter/blockDataConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol_id_converter/blockDataConverter.hpp -------------------------------------------------------------------------------- /cubic-server/protocol_id_converter/blockIdConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol_id_converter/blockIdConverter.cpp -------------------------------------------------------------------------------- /cubic-server/protocol_id_converter/blockIdConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol_id_converter/blockIdConverter.hpp -------------------------------------------------------------------------------- /cubic-server/protocol_id_converter/itemConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol_id_converter/itemConverter.cpp -------------------------------------------------------------------------------- /cubic-server/protocol_id_converter/itemConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol_id_converter/itemConverter.hpp -------------------------------------------------------------------------------- /cubic-server/protocol_id_converter/soundEventConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol_id_converter/soundEventConverter.cpp -------------------------------------------------------------------------------- /cubic-server/protocol_id_converter/soundEventConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/protocol_id_converter/soundEventConverter.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/Blasting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/Blasting.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/Blasting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/Blasting.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/recipes/CampfireCooking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/CampfireCooking.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/CampfireCooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/CampfireCooking.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/CraftingShaped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/CraftingShaped.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/CraftingShaped.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/CraftingShaped.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/CraftingShapeless.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/CraftingShapeless.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/CraftingShapeless.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/CraftingShapeless.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/Recipes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/Recipes.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/Recipes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/Recipes.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/Smelting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/Smelting.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/Smelting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/Smelting.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/Smithing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/Smithing.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/Smithing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/Smithing.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/Smoking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/Smoking.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/Smoking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/Smoking.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialArmorDye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialArmorDye.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialArmorDye.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialArmorDye.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialBannerDuplicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialBannerDuplicate.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialBannerDuplicate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialBannerDuplicate.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialBookCloning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialBookCloning.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialBookCloning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialBookCloning.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialFireworkRocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialFireworkRocket.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialFireworkRocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialFireworkRocket.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialFireworkStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialFireworkStar.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialFireworkStar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialFireworkStar.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialFireworkStarFade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialFireworkStarFade.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialFireworkStarFade.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialFireworkStarFade.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialMapCloning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialMapCloning.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialMapCloning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialMapCloning.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialMapExtending.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialMapExtending.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialMapExtending.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialMapExtending.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialRepairItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialRepairItem.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialRepairItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialRepairItem.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialShieldDecoration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialShieldDecoration.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialShieldDecoration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialShieldDecoration.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialShulkerboxColoring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialShulkerboxColoring.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialShulkerboxColoring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialShulkerboxColoring.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialSuspiciousStew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialSuspiciousStew.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialSuspiciousStew.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialSuspiciousStew.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialTippedArrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialTippedArrow.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/SpecialTippedArrow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/SpecialTippedArrow.hpp -------------------------------------------------------------------------------- /cubic-server/recipes/StoneCutting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/StoneCutting.cpp -------------------------------------------------------------------------------- /cubic-server/recipes/StoneCutting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/recipes/StoneCutting.hpp -------------------------------------------------------------------------------- /cubic-server/registry/Biome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/registry/Biome.cpp -------------------------------------------------------------------------------- /cubic-server/registry/Biome.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/registry/Biome.hpp -------------------------------------------------------------------------------- /cubic-server/registry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/registry/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/registry/Chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/registry/Chat.cpp -------------------------------------------------------------------------------- /cubic-server/registry/Chat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/registry/Chat.hpp -------------------------------------------------------------------------------- /cubic-server/registry/Dimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/registry/Dimension.cpp -------------------------------------------------------------------------------- /cubic-server/registry/Dimension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/registry/Dimension.hpp -------------------------------------------------------------------------------- /cubic-server/registry/MasterRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/registry/MasterRegistry.cpp -------------------------------------------------------------------------------- /cubic-server/registry/MasterRegistry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/registry/MasterRegistry.hpp -------------------------------------------------------------------------------- /cubic-server/registry/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/registry/Registry.cpp -------------------------------------------------------------------------------- /cubic-server/registry/Registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/registry/Registry.hpp -------------------------------------------------------------------------------- /cubic-server/scoreboard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/scoreboard/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/scoreboard/Objectives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/scoreboard/Objectives.cpp -------------------------------------------------------------------------------- /cubic-server/scoreboard/Objectives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/scoreboard/Objectives.hpp -------------------------------------------------------------------------------- /cubic-server/scoreboard/Scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/scoreboard/Scoreboard.cpp -------------------------------------------------------------------------------- /cubic-server/scoreboard/Scoreboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/scoreboard/Scoreboard.hpp -------------------------------------------------------------------------------- /cubic-server/scoreboard/ScoreboardSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/scoreboard/ScoreboardSystem.cpp -------------------------------------------------------------------------------- /cubic-server/scoreboard/ScoreboardSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/scoreboard/ScoreboardSystem.hpp -------------------------------------------------------------------------------- /cubic-server/scoreboard/Teams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/scoreboard/Teams.cpp -------------------------------------------------------------------------------- /cubic-server/scoreboard/Teams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/scoreboard/Teams.hpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/thread_pool/Pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/Pool.cpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/Pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/Pool.hpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/PriorityThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/PriorityThreadPool.cpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/PriorityThreadPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/PriorityThreadPool.hpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/PriorityThreadWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/PriorityThreadWorker.cpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/PriorityThreadWorker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/PriorityThreadWorker.hpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/Semaphore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/Semaphore.hpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/Task.cpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/Task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/Task.hpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/ThreadPool.cpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/ThreadPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/ThreadPool.hpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/ThreadPoolUtility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/ThreadPoolUtility.hpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/ThreadWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/ThreadWorker.cpp -------------------------------------------------------------------------------- /cubic-server/thread_pool/ThreadWorker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/thread_pool/ThreadWorker.hpp -------------------------------------------------------------------------------- /cubic-server/tiles-entities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/tiles-entities/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/tiles-entities/Furnace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/tiles-entities/Furnace.cpp -------------------------------------------------------------------------------- /cubic-server/tiles-entities/Furnace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/tiles-entities/Furnace.hpp -------------------------------------------------------------------------------- /cubic-server/tiles-entities/TileEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/tiles-entities/TileEntity.hpp -------------------------------------------------------------------------------- /cubic-server/tiles-entities/TileEntityList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/tiles-entities/TileEntityList.cpp -------------------------------------------------------------------------------- /cubic-server/tiles-entities/TileEntityList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/tiles-entities/TileEntityList.hpp -------------------------------------------------------------------------------- /cubic-server/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/types.cpp -------------------------------------------------------------------------------- /cubic-server/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/types.hpp -------------------------------------------------------------------------------- /cubic-server/utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/utility/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/utility/PseudoRandomGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/utility/PseudoRandomGenerator.cpp -------------------------------------------------------------------------------- /cubic-server/utility/PseudoRandomGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/utility/PseudoRandomGenerator.hpp -------------------------------------------------------------------------------- /cubic-server/utility/RandomTickBlockFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/utility/RandomTickBlockFunctions.hpp -------------------------------------------------------------------------------- /cubic-server/utility/SharedFromThis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/utility/SharedFromThis.hpp -------------------------------------------------------------------------------- /cubic-server/utility/random_tick_block_functions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/utility/random_tick_block_functions/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/utility/random_tick_block_functions/Farmland.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/utility/random_tick_block_functions/Farmland.cpp -------------------------------------------------------------------------------- /cubic-server/utility/random_tick_block_functions/Farmland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/utility/random_tick_block_functions/Farmland.hpp -------------------------------------------------------------------------------- /cubic-server/utility/random_tick_block_functions/Wheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/utility/random_tick_block_functions/Wheat.cpp -------------------------------------------------------------------------------- /cubic-server/utility/random_tick_block_functions/Wheat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/utility/random_tick_block_functions/Wheat.hpp -------------------------------------------------------------------------------- /cubic-server/whitelist/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/whitelist/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/whitelist/Whitelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/whitelist/Whitelist.cpp -------------------------------------------------------------------------------- /cubic-server/whitelist/Whitelist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/whitelist/Whitelist.hpp -------------------------------------------------------------------------------- /cubic-server/world_storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/CMakeLists.txt -------------------------------------------------------------------------------- /cubic-server/world_storage/ChunkColumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/ChunkColumn.cpp -------------------------------------------------------------------------------- /cubic-server/world_storage/ChunkColumn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/ChunkColumn.hpp -------------------------------------------------------------------------------- /cubic-server/world_storage/DynamicStorage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/DynamicStorage.hpp -------------------------------------------------------------------------------- /cubic-server/world_storage/Item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/Item.hpp -------------------------------------------------------------------------------- /cubic-server/world_storage/Level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/Level.cpp -------------------------------------------------------------------------------- /cubic-server/world_storage/Level.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/Level.hpp -------------------------------------------------------------------------------- /cubic-server/world_storage/LevelData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/LevelData.hpp -------------------------------------------------------------------------------- /cubic-server/world_storage/Palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/Palette.cpp -------------------------------------------------------------------------------- /cubic-server/world_storage/Palette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/Palette.hpp -------------------------------------------------------------------------------- /cubic-server/world_storage/Persistence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/Persistence.cpp -------------------------------------------------------------------------------- /cubic-server/world_storage/Persistence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/Persistence.hpp -------------------------------------------------------------------------------- /cubic-server/world_storage/PlayerData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/PlayerData.hpp -------------------------------------------------------------------------------- /cubic-server/world_storage/Section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/Section.cpp -------------------------------------------------------------------------------- /cubic-server/world_storage/Section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/Section.hpp -------------------------------------------------------------------------------- /cubic-server/world_storage/tests/DynamicStorage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cubic-server/world_storage/tests/DynamicStorage_test.cpp -------------------------------------------------------------------------------- /cxx_flag_overrides.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/cxx_flag_overrides.cmake -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | html 2 | latex 3 | -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/docs/ci.sh -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/docs/logo.png -------------------------------------------------------------------------------- /generators/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | blocks.json 3 | main.cpp 4 | generated/ 5 | -------------------------------------------------------------------------------- /generators/protocol_block_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/generators/protocol_block_ids.py -------------------------------------------------------------------------------- /generators/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicMC/cubic-server/HEAD/generators/requirements.txt --------------------------------------------------------------------------------