├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── DISCUSSION_TEMPLATE │ └── ideas.yml ├── ISSUE_TEMPLATE │ ├── bug-or-incompatibility.yml │ ├── config.yml │ ├── crash-or-stacktrace.yml │ ├── new-feature.yml │ └── performance-problem.yml └── workflows │ ├── build.yml │ ├── close_invalid_prs.yml │ ├── pr_comment.yml │ ├── projects.yml │ └── test_results.yml ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── licenses ├── GPL.md └── MIT.md ├── paper-api-generator ├── build.gradle.kts ├── generated │ ├── com │ │ └── destroystokyo │ │ │ └── paper │ │ │ └── entity │ │ │ └── ai │ │ │ └── VanillaGoal.java │ └── io │ │ └── papermc │ │ └── paper │ │ └── registry │ │ └── keys │ │ ├── AttributeKeys.java │ │ ├── BannerPatternKeys.java │ │ ├── BiomeKeys.java │ │ ├── BlockTypeKeys.java │ │ ├── CatVariantKeys.java │ │ ├── DamageTypeKeys.java │ │ ├── EnchantmentKeys.java │ │ ├── FluidKeys.java │ │ ├── FrogVariantKeys.java │ │ ├── GameEventKeys.java │ │ ├── InstrumentKeys.java │ │ ├── ItemTypeKeys.java │ │ ├── JukeboxSongKeys.java │ │ ├── MapDecorationTypeKeys.java │ │ ├── MenuTypeKeys.java │ │ ├── MobEffectKeys.java │ │ ├── PaintingVariantKeys.java │ │ ├── SoundEventKeys.java │ │ ├── StructureKeys.java │ │ ├── StructureTypeKeys.java │ │ ├── TrimMaterialKeys.java │ │ ├── TrimPatternKeys.java │ │ ├── VillagerProfessionKeys.java │ │ ├── VillagerTypeKeys.java │ │ ├── WolfVariantKeys.java │ │ └── tags │ │ ├── BannerPatternTagKeys.java │ │ ├── BiomeTagKeys.java │ │ ├── BlockTypeTagKeys.java │ │ ├── CatVariantTagKeys.java │ │ ├── DamageTypeTagKeys.java │ │ ├── EnchantmentTagKeys.java │ │ ├── FluidTagKeys.java │ │ ├── GameEventTagKeys.java │ │ ├── InstrumentTagKeys.java │ │ ├── ItemTypeTagKeys.java │ │ ├── PaintingVariantTagKeys.java │ │ └── StructureTagKeys.java ├── src │ ├── main │ │ └── java │ │ │ └── io │ │ │ └── papermc │ │ │ └── generator │ │ │ ├── Generators.java │ │ │ ├── Main.java │ │ │ ├── types │ │ │ ├── GeneratedKeyType.java │ │ │ ├── GeneratedTagKeyType.java │ │ │ ├── SimpleGenerator.java │ │ │ ├── SourceGenerator.java │ │ │ └── goal │ │ │ │ ├── MobGoalGenerator.java │ │ │ │ └── MobGoalNames.java │ │ │ └── utils │ │ │ ├── Annotations.java │ │ │ ├── CollectingContext.java │ │ │ ├── Formatting.java │ │ │ ├── Javadocs.java │ │ │ └── TagCollector.java │ └── test │ │ └── java │ │ └── io │ │ └── papermc │ │ └── generator │ │ └── MobGoalConverterTest.java └── wideners.at ├── patches ├── api │ ├── 0001-Convert-project-to-Gradle.patch │ ├── 0002-Build-system-changes.patch │ ├── 0003-Test-changes.patch │ ├── 0004-Code-Generation.patch │ ├── 0005-Add-FastUtil-to-Bukkit.patch │ ├── 0006-Adventure.patch │ ├── 0007-Paper-Utils.patch │ ├── 0008-Use-ASM-for-event-executors.patch │ ├── 0009-Paper-Plugins.patch │ ├── 0010-Add-Position.patch │ ├── 0011-Timings-v2.patch │ ├── 0012-Add-command-line-option-to-load-extra-plugin-jars-no.patch │ ├── 0013-Player-affects-spawning-API.patch │ ├── 0014-Add-getTPS-method.patch │ ├── 0015-Expose-server-build-information.patch │ ├── 0016-Entity-Origin-API.patch │ ├── 0017-Add-view-distance-API.patch │ ├── 0018-Add-BeaconEffectEvent.patch │ ├── 0019-Expose-server-CommandMap.patch │ ├── 0020-Graduate-bungeecord-chat-API-from-spigot-subclasses.patch │ ├── 0021-Add-exception-reporting-event.patch │ ├── 0022-Add-BaseComponent-sendMessage-methods-to-CommandSend.patch │ ├── 0023-Fix-ServerListPingEvent-flagging-as-Async.patch │ ├── 0024-Player-Tab-List-and-Title-APIs.patch │ ├── 0025-Add-methods-for-working-with-arrows-stuck-in-living-.patch │ ├── 0026-Complete-resource-pack-API.patch │ ├── 0027-Add-a-call-helper-to-Event.patch │ ├── 0028-Add-sender-name-to-commands.yml-replacement.patch │ ├── 0029-Add-command-to-reload-permissions.yml-and-require-co.patch │ ├── 0030-Custom-replacement-for-eaten-items.patch │ ├── 0031-Entity-AddTo-RemoveFrom-World-Events.patch │ ├── 0032-EntityPathfindEvent.patch │ ├── 0033-Reduce-thread-synchronization-in-MetadataStoreBase.patch │ ├── 0034-Add-MetadataStoreBase.removeAll-Plugin.patch │ ├── 0035-Add-PlayerUseUnknownEntityEvent.patch │ ├── 0036-Add-handshake-event-to-allow-plugins-to-handle-clien.patch │ ├── 0037-Arrow-pickup-rule-API.patch │ ├── 0038-EntityRegainHealthEvent-isFastRegen-API.patch │ ├── 0039-LootTable-API.patch │ ├── 0040-Add-EntityZapEvent.patch │ ├── 0041-Misc-Utils.patch │ ├── 0042-Allow-Reloading-of-Command-Aliases.patch │ ├── 0043-Add-source-to-PlayerExpChangeEvent.patch │ ├── 0044-Add-ProjectileCollideEvent.patch │ ├── 0045-Add-String-based-Action-Bar-API.patch │ ├── 0046-Add-API-methods-to-control-if-armour-stands-can-move.patch │ ├── 0047-IllegalPacketEvent.patch │ ├── 0048-Fireworks-API-s.patch │ ├── 0049-PlayerTeleportEndGatewayEvent.patch │ ├── 0050-Provide-E-TE-Chunk-count-stat-methods.patch │ ├── 0051-ExperienceOrbs-API-for-Reason-Source-Triggering-play.patch │ ├── 0052-Add-configuration-option-to-prevent-player-names-fro.patch │ ├── 0053-Fix-upstream-javadocs.patch │ ├── 0054-Item-canEntityPickup.patch │ ├── 0055-PlayerAttemptPickupItemEvent.patch │ ├── 0056-Add-UnknownCommandEvent.patch │ ├── 0057-Basic-PlayerProfile-API.patch │ ├── 0058-PlayerPickupItemEvent-setFlyAtPlayer.patch │ ├── 0059-Shoulder-Entities-Release-API.patch │ ├── 0060-Entity-fromMobSpawner.patch │ ├── 0061-Profile-Lookup-Events.patch │ ├── 0062-Improve-the-Saddle-API-for-Horses.patch │ ├── 0063-Add-getI18NDisplayName-API.patch │ ├── 0064-ensureServerConversions-API.patch │ ├── 0065-LivingEntity-setKiller.patch │ ├── 0066-ProfileWhitelistVerifyEvent.patch │ ├── 0067-Allow-plugins-to-use-SLF4J-for-logging.patch │ ├── 0068-Handle-plugin-prefixes-in-implementation-logging-con.patch │ ├── 0069-Add-PlayerJumpEvent.patch │ ├── 0070-Add-workaround-for-plugins-modifying-the-parent-of-t.patch │ ├── 0071-Add-PlayerArmorChangeEvent.patch │ ├── 0072-API-to-get-a-BlockState-without-a-snapshot.patch │ ├── 0073-AsyncTabCompleteEvent.patch │ ├── 0074-Expose-client-protocol-version-and-virtual-host.patch │ ├── 0075-Display-warning-on-deprecated-recipe-API.patch │ ├── 0076-PlayerPickupExperienceEvent.patch │ ├── 0077-ExperienceOrb-merging-stacking-API.patch │ ├── 0078-Ability-to-apply-mending-to-XP-API.patch │ ├── 0079-PreCreatureSpawnEvent.patch │ ├── 0080-PlayerNaturallySpawnCreaturesEvent.patch │ ├── 0081-Add-setPlayerProfile-API-for-Skulls.patch │ ├── 0082-Add-PlayerAdvancementCriterionGrantEvent.patch │ ├── 0083-Fill-Profile-Property-Events.patch │ ├── 0084-Add-ArmorStand-Item-Meta.patch │ ├── 0085-Optimize-Hoppers.patch │ ├── 0086-Tameable-getOwnerUniqueId-API.patch │ ├── 0087-Add-more-fields-to-AsyncPreLoginEvent.patch │ ├── 0088-Add-extended-PaperServerListPingEvent.patch │ ├── 0089-Player.setPlayerProfile-API.patch │ ├── 0090-getPlayerUniqueId-API.patch │ ├── 0091-Add-legacy-ping-support-to-PaperServerListPingEvent.patch │ ├── 0092-Add-openSign-method-to-HumanEntity.patch │ ├── 0093-Add-Ban-Methods-to-Player-Objects.patch │ ├── 0094-EndermanEscapeEvent.patch │ ├── 0095-Enderman.teleportRandomly.patch │ ├── 0096-Additional-world.getNearbyEntities-API-s.patch │ ├── 0097-Location.isChunkLoaded-API.patch │ ├── 0098-Expand-World.spawnParticle-API-and-add-Builder.patch │ ├── 0099-EndermanAttackPlayerEvent.patch │ ├── 0100-WitchConsumePotionEvent.patch │ ├── 0101-WitchThrowPotionEvent.patch │ ├── 0102-Location.toBlockLocation-toCenterLocation.patch │ ├── 0103-PotionEffect-clone-methods.patch │ ├── 0104-WitchReadyPotionEvent.patch │ ├── 0105-ItemStack-getMaxItemUseDuration.patch │ ├── 0106-Add-EntityTeleportEndGatewayEvent.patch │ ├── 0107-Make-shield-blocking-delay-configurable.patch │ ├── 0108-EntityShootBowEvent-consumeArrow-and-getArrowItem-AP.patch │ ├── 0109-Add-getNearbyXXX-methods-to-Location.patch │ ├── 0110-PlayerReadyArrowEvent.patch │ ├── 0111-Add-entity-knockback-events.patch │ ├── 0112-Expand-Explosions-API.patch │ ├── 0113-ItemStack-API-additions-for-quantity-flags-lore.patch │ ├── 0114-LivingEntity-Active-Item-API.patch │ ├── 0115-RangedEntity-API.patch │ ├── 0116-Add-World.getEntity-UUID-API.patch │ ├── 0117-InventoryCloseEvent-Reason-API.patch │ ├── 0118-Allow-setting-the-vex-s-summoner.patch │ ├── 0119-Entity-getChunk-API.patch │ ├── 0120-EnderDragon-Events.patch │ ├── 0121-PlayerElytraBoostEvent.patch │ ├── 0122-PlayerLaunchProjectileEvent.patch │ ├── 0123-Allow-disabling-armour-stand-ticking.patch │ ├── 0124-SkeletonHorse-Additions.patch │ ├── 0125-Expand-Location-Manipulation-API.patch │ ├── 0126-Expand-ArmorStand-API.patch │ ├── 0127-AnvilDamageEvent.patch │ ├── 0128-Add-TNTPrimeEvent.patch │ ├── 0129-Provide-Chunk-Coordinates-as-a-Long-API.patch │ ├── 0130-Ability-to-get-Tile-Entities-from-a-chunk-without-sn.patch │ ├── 0131-Don-t-use-snapshots-for-Timings-Tile-Entity-reports.patch │ ├── 0132-Allow-Blocks-to-be-accessed-via-a-long-key.patch │ ├── 0133-Slime-Pathfinder-Events.patch │ ├── 0134-Add-PhantomPreSpawnEvent.patch │ ├── 0135-Add-More-Creeper-API.patch │ ├── 0136-Inventory-removeItemAnySlot.patch │ ├── 0137-isChunkGenerated-API.patch │ ├── 0138-Add-source-block-constructor-and-getChangedBlockData.patch │ ├── 0139-Async-Chunks-API.patch │ ├── 0140-Add-ray-tracing-methods-to-LivingEntity.patch │ ├── 0141-Expose-attack-cooldown-methods-for-Player.patch │ ├── 0142-Improve-death-events.patch │ ├── 0143-Mob-Pathfinding-API.patch │ ├── 0144-Performance-Concurrency-Improvements-to-Permissions.patch │ ├── 0145-Implement-furnace-cook-speed-multiplier-API.patch │ ├── 0146-Material-API-additions.patch │ ├── 0147-Add-Material-Tags.patch │ ├── 0148-PreSpawnerSpawnEvent.patch │ ├── 0149-Add-LivingEntity-getTargetEntity.patch │ ├── 0150-Add-sun-related-API.patch │ ├── 0151-Turtle-API.patch │ ├── 0152-Add-spectator-target-events.patch │ ├── 0153-Add-more-Witch-API.patch │ ├── 0154-Make-the-default-permission-message-configurable.patch │ ├── 0155-Support-cancellation-supression-of-EntityDismount-Ve.patch │ ├── 0156-Add-more-Zombie-API.patch │ ├── 0157-Change-the-reserved-channel-check-to-be-sensible.patch │ ├── 0158-Add-PlayerConnectionCloseEvent.patch │ ├── 0159-Add-APIs-to-replace-OfflinePlayer-getLastPlayed.patch │ ├── 0160-Add-ItemStack-Recipe-API-helper-methods.patch │ ├── 0161-BlockDestroyEvent.patch │ ├── 0162-Add-WhitelistToggleEvent.patch │ ├── 0163-Add-GS4-Query-event.patch │ ├── 0164-Add-PlayerPostRespawnEvent.patch │ ├── 0165-Fixes-and-additions-to-the-spawn-reason-API.patch │ ├── 0166-Fix-Spigot-annotation-mistakes.patch │ ├── 0167-Server-Tick-Events.patch │ ├── 0168-PlayerDeathEvent-getItemsToKeep.patch │ ├── 0169-Add-Heightmap-API.patch │ ├── 0170-Mob-Spawner-API-Enhancements.patch │ ├── 0171-Add-BlockSoundGroup-interface.patch │ ├── 0172-Amend-PlayerInteractAtEntityEvent-javadoc-for-ArmorS.patch │ ├── 0173-Set-true-custom-payload-channel-size-limit.patch │ ├── 0174-Expose-the-internal-current-tick.patch │ ├── 0175-Improve-Block-breakNaturally-API.patch │ ├── 0176-PlayerDeathEvent-shouldDropExperience.patch │ ├── 0177-Add-ThrownEggHatchEvent.patch │ ├── 0178-Entity-Jump-API.patch │ ├── 0179-add-hand-to-BlockMultiPlaceEvent.patch │ ├── 0180-Add-tick-times-API.patch │ ├── 0181-Expose-MinecraftServer-isRunning.patch │ ├── 0182-Add-Raw-Byte-ItemStack-Serialization.patch │ ├── 0183-Add-Player-Client-Options-API.patch │ ├── 0184-Add-PlayerAttackEntityCooldownResetEvent.patch │ ├── 0185-Add-item-slot-convenience-methods.patch │ ├── 0186-Villager-Restocks-API.patch │ ├── 0187-Add-Mob-Goal-API.patch │ ├── 0188-Add-villager-reputation-API.patch │ ├── 0189-Spawn-Reason-API.patch │ ├── 0190-Potential-bed-API.patch │ ├── 0191-Inventory-getHolder-method-without-block-snapshot.patch │ ├── 0192-Add-and-implement-PlayerRecipeBookClickEvent.patch │ ├── 0193-Support-components-in-ItemMeta.patch │ ├── 0194-added-2-new-TargetReasons-for-1.16-mob-behavior.patch │ ├── 0195-Add-entity-liquid-API.patch │ ├── 0196-Add-PrepareResultEvent-PrepareGrindstoneEvent.patch │ ├── 0197-Add-BellRingEvent.patch │ ├── 0198-Brand-support.patch │ ├── 0199-Add-moon-phase-API.patch │ ├── 0200-Add-playPickupItemAnimation-to-LivingEntity.patch │ ├── 0201-Add-more-Evoker-API.patch │ ├── 0202-Add-methods-to-get-translation-keys.patch │ ├── 0203-Create-HoverEvent-from-ItemStack-Entity.patch │ ├── 0204-Add-additional-open-container-api-to-HumanEntity.patch │ ├── 0205-Expose-the-Entity-Counter-to-allow-plugins-to-use-va.patch │ ├── 0206-Entity-isTicking.patch │ ├── 0207-Villager-resetOffers.patch │ ├── 0208-Player-elytra-boost-API.patch │ ├── 0209-Add-getOfflinePlayerIfCached-String.patch │ ├── 0210-Add-ignore-discounts-API.patch │ ├── 0211-Item-no-age-no-player-pickup.patch │ ├── 0212-Beacon-API-custom-effect-ranges.patch │ ├── 0213-Add-API-for-quit-reason.patch │ ├── 0214-Add-Destroy-Speed-API.patch │ ├── 0215-Add-LivingEntity-clearActiveItem.patch │ ├── 0216-Add-PlayerItemCooldownEvent.patch │ ├── 0217-More-lightning-API.patch │ ├── 0218-Add-PlayerShearBlockEvent.patch │ ├── 0219-Player-Chunk-Load-Unload-Events.patch │ ├── 0220-Expose-LivingEntity-hurt-direction.patch │ ├── 0221-Add-OBSTRUCTED-reason-to-BedEnterResult.patch │ ├── 0222-Added-PlayerTradeEvent.patch │ ├── 0223-Add-TargetHitEvent-API.patch │ ├── 0224-Additional-Block-Material-API-s.patch │ ├── 0225-Add-API-to-get-Material-from-Boats-and-Minecarts.patch │ ├── 0226-Add-PlayerFlowerPotManipulateEvent.patch │ ├── 0227-Zombie-API-breaking-doors.patch │ ├── 0228-Add-EntityLoadCrossbowEvent.patch │ ├── 0229-Added-WorldGameRuleChangeEvent.patch │ ├── 0230-Added-ServerResourcesReloadedEvent.patch │ ├── 0231-Add-BlockFailedDispenseEvent.patch │ ├── 0232-Added-PlayerLecternPageChangeEvent.patch │ ├── 0233-Added-PlayerLoomPatternSelectEvent.patch │ ├── 0234-Add-API-to-get-exact-interaction-point-in-PlayerInte.patch │ ├── 0235-Add-sendOpLevel-API.patch │ ├── 0236-Add-RegistryAccess-for-managing-registries.patch │ ├── 0237-Add-StructuresLocateEvent.patch │ ├── 0238-Add-BlockPreDispenseEvent.patch │ ├── 0239-Added-PlayerChangeBeaconEffectEvent.patch │ ├── 0240-Added-PlayerStonecutterRecipeSelectEvent.patch │ ├── 0241-Add-dropLeash-variable-to-EntityUnleashEvent.patch │ ├── 0242-add-DragonEggFormEvent.patch │ ├── 0243-EntityMoveEvent.patch │ ├── 0244-Allow-adding-items-to-BlockDropItemEvent.patch │ ├── 0245-Add-getMainThreadExecutor-to-BukkitScheduler.patch │ ├── 0246-living-entity-allow-attribute-registration.patch │ ├── 0247-Add-missing-effects.patch │ ├── 0248-Expose-Tracked-Players.patch │ ├── 0249-Add-worldborder-events.patch │ ├── 0250-added-PlayerNameEntityEvent.patch │ ├── 0251-Add-recipe-to-cook-events.patch │ ├── 0252-Add-Block-isValidTool.patch │ ├── 0253-Expand-world-key-API.patch │ ├── 0254-Improve-Item-Rarity-API.patch │ ├── 0255-Expose-protocol-version.patch │ ├── 0256-add-isDeeplySleeping-to-HumanEntity.patch │ ├── 0257-add-consumeFuel-to-FurnaceBurnEvent.patch │ ├── 0258-add-get-set-drop-chance-to-EntityEquipment.patch │ ├── 0259-Added-PlayerDeepSleepEvent.patch │ ├── 0260-More-World-API.patch │ ├── 0261-Added-PlayerBedFailEnterEvent.patch │ ├── 0262-Introduce-beacon-activation-deactivation-events.patch │ ├── 0263-PlayerMoveEvent-Improvements.patch │ ├── 0264-add-RespawnFlags-to-PlayerRespawnEvent.patch │ ├── 0265-Add-more-WanderingTrader-API.patch │ ├── 0266-Add-EntityBlockStorage-clearEntities.patch │ ├── 0267-Add-Adventure-message-to-PlayerAdvancementDoneEvent.patch │ ├── 0268-Inventory-close.patch │ ├── 0269-Add-a-should-burn-in-sunlight-API-for-Phantoms-and-S.patch │ ├── 0270-Add-basic-Datapack-API.patch │ ├── 0271-additions-to-PlayerGameModeChangeEvent.patch │ ├── 0272-ItemStack-repair-check-API.patch │ ├── 0273-More-Enchantment-API.patch │ ├── 0274-Add-Mob-lookAt-API.patch │ ├── 0275-ItemStack-editMeta.patch │ ├── 0276-Add-EntityInsideBlockEvent.patch │ ├── 0277-Improve-item-default-attribute-API.patch │ ├── 0278-Add-cause-to-Weather-ThunderChangeEvents.patch │ ├── 0279-More-Lidded-Block-API.patch │ ├── 0280-Add-PlayerKickEvent-causes.patch │ ├── 0281-Add-PufferFishStateChangeEvent.patch │ ├── 0282-Add-BellRevealRaiderEvent.patch │ ├── 0283-Add-ElderGuardianAppearanceEvent.patch │ ├── 0284-Add-more-line-of-sight-methods.patch │ ├── 0285-Add-WaterBottleSplashEvent.patch │ ├── 0286-Add-more-LimitedRegion-API.patch │ ├── 0287-Missing-Entity-API.patch │ ├── 0288-Adds-PlayerArmSwingEvent.patch │ ├── 0289-Add-PlayerSignCommandPreprocessEvent.patch │ ├── 0290-fix-empty-array-elements-in-command-arguments.patch │ ├── 0291-Stinger-API.patch │ ├── 0292-Rewrite-LogEvents-to-contain-the-source-jars-in-stac.patch │ ├── 0293-Add-PlayerSetSpawnEvent.patch │ ├── 0294-Added-EntityDamageItemEvent.patch │ ├── 0295-Make-EntityUnleashEvent-cancellable.patch │ ├── 0296-Change-EnderEye-target-without-changing-other-things.patch │ ├── 0297-Add-BlockBreakBlockEvent.patch │ ├── 0298-Add-helpers-for-left-right-click-to-Action.patch │ ├── 0299-Option-to-prevent-data-components-copy-in-smithing-r.patch │ ├── 0300-More-CommandBlock-API.patch │ ├── 0301-Add-missing-team-sidebar-display-slots.patch │ ├── 0302-add-back-EntityPortalExitEvent.patch │ ├── 0303-Add-methods-to-find-targets-for-lightning-strikes.patch │ ├── 0304-Get-entity-default-attributes.patch │ ├── 0305-Left-handed-API.patch │ ├── 0306-Add-critical-damage-API.patch │ ├── 0307-Add-more-advancement-API.patch │ ├── 0308-Fix-issues-with-mob-conversion.patch │ ├── 0309-Add-hasCollision-methods-to-various-places.patch │ ├── 0310-Goat-ram-API.patch │ ├── 0311-Add-API-for-resetting-a-single-score.patch │ ├── 0312-Add-Raw-Byte-Entity-Serialization.patch │ ├── 0313-Add-PlayerItemFrameChangeEvent.patch │ ├── 0314-Add-more-Campfire-API.patch │ ├── 0315-Extend-VehicleCollisionEvent-move-HandlerList-up.patch │ ├── 0316-Improve-scoreboard-entries.patch │ ├── 0317-Entity-powdered-snow-API.patch │ ├── 0318-Add-API-for-item-entity-health.patch │ ├── 0319-Expose-isFuel-and-canSmelt-methods-to-FurnaceInvento.patch │ ├── 0320-Bucketable-API.patch │ ├── 0321-System-prop-for-default-config-comment-parsing.patch │ ├── 0322-Expose-vanilla-BiomeProvider-from-WorldInfo.patch │ ├── 0323-Multiple-Entries-with-Scoreboards.patch │ ├── 0324-Warn-on-strange-EventHandler-return-types.patch │ ├── 0325-Multi-Block-Change-API.patch │ ├── 0326-Fix-NotePlayEvent.patch │ ├── 0327-Freeze-Tick-Lock-API.patch │ ├── 0328-Dolphin-API.patch │ ├── 0329-More-PotionEffectType-API.patch │ ├── 0330-API-for-creating-command-sender-which-forwards-feedb.patch │ ├── 0331-Implement-regenerateChunk.patch │ ├── 0332-Add-GameEvent-tags.patch │ ├── 0333-Furnace-RecipesUsed-API.patch │ ├── 0334-Configurable-sculk-sensor-listener-range.patch │ ├── 0335-Add-missing-block-data-API.patch │ ├── 0336-Custom-Potion-Mixes.patch │ ├── 0337-Expose-furnace-minecart-push-values.patch │ ├── 0338-More-Projectile-API.patch │ ├── 0339-Add-getComputedBiome-API.patch │ ├── 0340-Add-enchantWithLevels-API.patch │ ├── 0341-Add-TameableDeathMessageEvent.patch │ ├── 0342-Allow-to-change-the-podium-of-the-EnderDragon.patch │ ├── 0343-Fix-incorrect-new-blockstate-in-EntityBreakDoorEvent.patch │ ├── 0344-Add-pre-unbreaking-amount-to-PlayerItemDamageEvent.patch │ ├── 0345-WorldCreator-keepSpawnLoaded.patch │ ├── 0346-Add-EntityDyeEvent-and-CollarColorable-interface.patch │ ├── 0347-Add-PlayerStopUsingItemEvent.patch │ ├── 0348-Expand-FallingBlock-API.patch │ ├── 0349-Add-method-isTickingWorlds-to-Bukkit.patch │ ├── 0350-Add-WardenAngerChangeEvent.patch │ ├── 0351-Nameable-Banner-API.patch │ ├── 0352-Add-Player-getFishHook.patch │ ├── 0353-More-Teleport-API.patch │ ├── 0354-Add-EntityPortalReadyEvent.patch │ ├── 0355-Custom-Chat-Completion-Suggestions-API.patch │ ├── 0356-Collision-API.patch │ ├── 0357-Block-Ticking-API.patch │ ├── 0358-Add-NamespacedKey-biome-methods.patch │ ├── 0359-Also-load-resources-from-LibraryLoader.patch │ ├── 0360-Added-byte-array-serialization-deserialization-for-P.patch │ ├── 0361-Expose-codepoint-limit-in-YamlConfigOptions-and-incr.patch │ ├── 0362-Add-getDrops-to-BlockState.patch │ ├── 0363-Add-PlayerInventorySlotChangeEvent.patch │ ├── 0364-Elder-Guardian-appearance-API.patch │ ├── 0365-Add-EquipmentSlot-convenience-methods.patch │ ├── 0366-Add-LivingEntity-swingHand-EquipmentSlot-convenience.patch │ ├── 0367-Add-entity-knockback-API.patch │ ├── 0368-Added-EntityToggleSitEvent.patch │ ├── 0369-Add-Moving-Piston-API.patch │ ├── 0370-Add-PrePlayerAttackEntityEvent.patch │ ├── 0371-Add-Player-Warden-Warning-API.patch │ ├── 0372-More-vanilla-friendly-methods-to-update-trades.patch │ ├── 0373-Add-paper-dumplisteners-command.patch │ ├── 0374-ItemStack-damage-API.patch │ ├── 0375-Add-Tick-TemporalUnit.patch │ ├── 0376-Friction-API.patch │ ├── 0377-Player-Entity-Tracking-Events.patch │ ├── 0378-fix-Instruments.patch │ ├── 0379-Add-BlockLockCheckEvent.patch │ ├── 0380-Add-Sneaking-API-for-Entities.patch │ ├── 0381-Improve-PortalEvents.patch │ ├── 0382-Flying-Fall-Damage-API.patch │ ├── 0383-Replace-ItemFlag.HIDE_POTION_EFFECTS.patch │ ├── 0384-Win-Screen-API.patch │ ├── 0385-Add-Entity-Body-Yaw-API.patch │ ├── 0386-Fix-HandlerList-for-InventoryBlockStartEvent-subclas.patch │ ├── 0387-Add-EntityFertilizeEggEvent.patch │ ├── 0388-Add-CompostItemEvent-and-EntityCompostItemEvent.patch │ ├── 0389-Add-Shearable-API.patch │ ├── 0390-Fix-SpawnEggMeta-get-setSpawnedType.patch │ ├── 0391-Add-Mob-Experience-reward-API.patch │ ├── 0392-Expand-PlayerItemMendEvent.patch │ ├── 0393-Add-method-to-remove-all-active-potion-effects.patch │ ├── 0394-Folia-scheduler-and-owned-region-API.patch │ ├── 0395-Add-event-for-player-editing-sign.patch │ ├── 0396-More-Sign-Block-API.patch │ ├── 0397-Fix-BanList-API.patch │ ├── 0398-Add-whitelist-events.patch │ ├── 0399-API-for-updating-recipes-on-clients.patch │ ├── 0400-Add-PlayerFailMoveEvent.patch │ ├── 0401-Fix-custom-statistic-criteria-creation.patch │ ├── 0402-SculkCatalyst-bloom-API.patch │ ├── 0403-API-for-an-entity-s-scoreboard-name.patch │ ├── 0404-Deprecate-and-replace-methods-with-old-StructureType.patch │ ├── 0405-Add-Listing-API-for-Player.patch │ ├── 0406-Expose-clicked-BlockFace-during-BlockDamageEvent.patch │ ├── 0407-Fix-NPE-on-Boat-getStatus.patch │ ├── 0408-Expand-Pose-API.patch │ ├── 0409-MerchantRecipe-add-copy-constructor.patch │ ├── 0410-More-DragonBattle-API.patch │ ├── 0411-Add-PlayerPickItemEvent.patch │ ├── 0412-Allow-trident-custom-damage.patch │ ├── 0413-Expose-hand-during-BlockCanBuildEvent.patch │ ├── 0414-Limit-setBurnTime-to-valid-short-values.patch │ ├── 0415-Add-OfflinePlayer-isConnected.patch │ ├── 0416-Add-titleOverride-to-InventoryOpenEvent.patch │ ├── 0417-Allow-proper-checking-of-empty-item-stacks.patch │ ├── 0418-Fix-PlayerSwapHandItemsEvent-throwing-exception-when.patch │ ├── 0419-Add-player-idle-duration-API.patch │ ├── 0420-Add-API-to-get-the-collision-shape-of-a-block-before.patch │ ├── 0421-Add-predicate-for-blocks-when-raytracing.patch │ ├── 0422-Add-hand-to-fish-event-for-all-player-interactions.patch │ ├── 0423-Attribute-Modifier-API-improvements.patch │ ├── 0424-Expand-LingeringPotion-API.patch │ ├── 0425-Remove-unnecessary-durability-check-in-ItemStack-isS.patch │ ├── 0426-Add-Structure-check-API.patch │ ├── 0427-Experimental-annotations-change.patch │ ├── 0428-Add-more-scoreboard-API.patch │ ├── 0429-Improve-Registry.patch │ ├── 0430-Add-experience-points-API.patch │ ├── 0431-Add-missing-InventoryType.patch │ ├── 0432-Add-drops-to-shear-events.patch │ ├── 0433-Add-HiddenPotionEffect-API.patch │ ├── 0434-Add-PlayerShieldDisableEvent.patch │ ├── 0435-Return-null-for-empty-String-in-NamespacedKey.fromSt.patch │ ├── 0436-Add-BlockStateMeta-clearBlockState.patch │ ├── 0437-Expose-LootTable-of-DecoratedPot.patch │ ├── 0438-Add-ShulkerDuplicateEvent.patch │ ├── 0439-Add-api-for-spawn-egg-texture-colors.patch │ ├── 0440-Add-Lifecycle-Event-system.patch │ ├── 0441-ItemStack-Tooltip-API.patch │ ├── 0442-Add-getChunkSnapshot-includeLightData-parameter.patch │ ├── 0443-Add-FluidState-API.patch │ ├── 0444-add-number-format-api.patch │ ├── 0445-improve-BanList-types.patch │ ├── 0446-Suspicious-Effect-Entry-API.patch │ ├── 0447-Fix-DamageSource-API.patch │ ├── 0448-Expanded-Hopper-API.patch │ ├── 0449-Clone-mutables-to-prevent-unexpected-issues.patch │ ├── 0450-Add-BlockBreakProgressUpdateEvent.patch │ ├── 0451-Deprecate-ItemStack-setType.patch │ ├── 0452-Item-Mutation-Fixes.patch │ ├── 0453-API-for-checking-sent-chunks.patch │ ├── 0454-Add-CartographyItemEvent.patch │ ├── 0455-More-Raid-API.patch │ ├── 0456-Fix-SpawnerEntry-Equipment-API.patch │ ├── 0457-Fix-ItemFlags.patch │ ├── 0458-Allow-modifying-library-loader-jars-bytecode.patch │ ├── 0459-Add-hook-to-remap-library-jars.patch │ ├── 0460-Add-GameMode-isInvulnerable.patch │ ├── 0461-Expose-hasColor-to-leather-armor.patch │ ├── 0462-Added-API-to-get-player-ha-proxy-address.patch │ ├── 0463-More-Chest-Block-API.patch │ ├── 0464-Brigadier-based-command-API.patch │ ├── 0465-Fix-issues-with-recipe-API.patch │ ├── 0466-Fix-equipment-slot-and-group-API.patch │ ├── 0467-Allow-Bukkit-plugin-to-use-Paper-PluginLoader-API.patch │ ├── 0468-General-ItemMeta-fixes.patch │ ├── 0469-Add-missing-fishing-event-state.patch │ ├── 0470-Deprecate-InvAction-HOTBAR_MOVE_AND_READD.patch │ ├── 0471-Registry-Modification-API.patch │ ├── 0472-Introduce-registry-entry-and-builders.patch │ ├── 0473-Proxy-ItemStack-to-CraftItemStack.patch │ ├── 0474-Make-a-PDC-view-accessible-directly-from-ItemStack.patch │ ├── 0475-Fix-HelpCommand-searching.patch │ ├── 0476-add-Plugin-getDataPath.patch │ ├── 0477-Fix-PickupStatus-getting-reset.patch │ ├── 0478-Add-an-API-for-CanPlaceOn-and-CanDestroy-NBT-values.patch │ ├── 0479-Improve-StandardMessenger-exception-messages.patch │ ├── 0480-Add-even-more-Enchantment-API.patch │ ├── 0481-Leashable-API.patch │ ├── 0482-Add-enchantment-seed-update-API.patch │ ├── 0483-Deprecate-for-removal-all-OldEnum-related-methods.patch │ ├── 0484-Add-FeatureFlag-API.patch │ ├── 0485-Tag-Lifecycle-Events.patch │ ├── 0486-Item-serialization-as-json.patch │ ├── 0487-create-TileStateInventoryHolder.patch │ ├── 0488-Add-enchantWithLevels-with-enchantment-registry-set.patch │ ├── 0489-Improve-entity-effect-API.patch │ ├── 0490-Add-recipeBrewTime.patch │ ├── 0491-Add-PlayerInsertLecternBookEvent.patch │ ├── 0492-Void-damage-configuration-API.patch │ ├── 0493-Add-Offline-PDC-API.patch │ ├── 0494-Add-AnvilView-bypassEnchantmentLevelRestriction.patch │ ├── 0495-DataComponent-API.patch │ ├── 0496-Optimise-color-distance-check-in-MapPalette-by-remov.patch │ ├── 0497-Fix-incorrect-invulnerability-damage-reduction.patch │ ├── 0498-API-to-check-if-the-server-is-sleeping.patch │ ├── 0499-API-to-allow-disallow-tick-sleeping.patch │ ├── 0500-Expanded-Art-API.patch │ └── 0501-Disable-deprecated-annotation-test.patch ├── removed │ ├── 1.20.5 │ │ └── 1037-Hide-unnecessary-itemmeta-from-clients.patch │ └── 1.21.3 │ │ ├── 0451-Fix-harming-potion-dupe.patch │ │ ├── 0986-Strip-raytracing-for-EntityLiving-hasLineOfSight.patch │ │ └── 9999-Optimise-nearby-player-retrieval.patch └── server │ ├── 0001-Setup-Gradle-project.patch │ ├── 0002-Remap-fixes.patch │ ├── 0003-Build-system-changes.patch │ ├── 0004-Test-changes.patch │ ├── 0005-Paper-config-files.patch │ ├── 0006-MC-Dev-fixes.patch │ ├── 0007-ConcurrentUtil.patch │ ├── 0008-CB-fixes.patch │ ├── 0009-MC-Utils.patch │ ├── 0010-Adventure.patch │ ├── 0011-Use-TerminalConsoleAppender-for-console-improvements.patch │ ├── 0012-Handle-plugin-prefixes-using-Log4J-configuration.patch │ ├── 0013-Improve-Log4J-Configuration-Plugin-Loggers.patch │ ├── 0014-Use-AsyncAppender-to-keep-logging-IO-off-main-thread.patch │ ├── 0015-Deobfuscate-stacktraces-in-log-messages-crash-report.patch │ ├── 0016-Rewrite-LogEvents-to-contain-the-source-jars-in-stac.patch │ ├── 0017-Paper-command.patch │ ├── 0018-Paper-Metrics.patch │ ├── 0019-Paper-Plugins.patch │ ├── 0020-Plugin-remapping.patch │ ├── 0021-Hook-into-CB-plugin-rewrites.patch │ ├── 0022-Remap-reflection-calls-in-plugins-using-internals.patch │ ├── 0023-Further-improve-server-tick-loop.patch │ ├── 0024-Remove-Spigot-timings.patch │ ├── 0025-Add-command-line-option-to-load-extra-plugin-jars-no.patch │ ├── 0026-Support-components-in-ItemMeta.patch │ ├── 0027-Configurable-cactus-bamboo-and-reed-growth-height.patch │ ├── 0028-Configurable-baby-zombie-movement-speed.patch │ ├── 0029-Configurable-fishing-time-ranges.patch │ ├── 0030-Allow-nerfed-mobs-to-jump.patch │ ├── 0031-Add-configurable-entity-despawn-distances.patch │ ├── 0032-Drop-falling-block-and-tnt-entities-at-the-specified.patch │ ├── 0033-Expose-server-build-information.patch │ ├── 0034-Player-affects-spawning-API.patch │ ├── 0035-Only-refresh-abilities-if-needed.patch │ ├── 0036-Entity-Origin-API.patch │ ├── 0037-Prevent-block-entity-and-entity-crashes.patch │ ├── 0038-Configurable-top-of-nether-void-damage.patch │ ├── 0039-Check-online-mode-before-converting-and-renaming-pla.patch │ ├── 0040-Add-more-entities-to-activation-range-ignore-list.patch │ ├── 0041-Configurable-end-credits.patch │ ├── 0042-Fix-lag-from-explosions-processing-dead-entities.patch │ ├── 0043-Optimize-explosions.patch │ ├── 0044-Disable-explosion-knockback.patch │ ├── 0045-Disable-thunder.patch │ ├── 0046-Disable-ice-and-snow.patch │ ├── 0047-Configurable-mob-spawner-tick-rate.patch │ ├── 0048-Use-null-Locale-by-default.patch │ ├── 0049-Add-BeaconEffectEvent.patch │ ├── 0050-Configurable-container-update-tick-rate.patch │ ├── 0051-Use-UserCache-for-player-heads.patch │ ├── 0052-Disable-spigot-tick-limiters.patch │ ├── 0053-Fix-spawn-location-event-changing-location.patch │ ├── 0054-Configurable-Disabling-Cat-Chest-Detection.patch │ ├── 0055-Improve-Player-chat-API-handling.patch │ ├── 0056-All-chunks-are-slime-spawn-chunks-toggle.patch │ ├── 0057-Expose-server-CommandMap.patch │ ├── 0058-Be-a-bit-more-informative-in-maxHealth-exception.patch │ ├── 0059-Player-Tab-List-and-Title-APIs.patch │ ├── 0060-Add-configurable-portal-search-radius.patch │ ├── 0061-Add-velocity-warnings.patch │ ├── 0062-Add-exception-reporting-event.patch │ ├── 0063-Disable-Scoreboards-for-non-players-by-default.patch │ ├── 0064-Add-methods-for-working-with-arrows-stuck-in-living-.patch │ ├── 0065-Complete-resource-pack-API.patch │ ├── 0066-Default-loading-permissions.yml-before-plugins.patch │ ├── 0067-Allow-Reloading-of-Custom-Permissions.patch │ ├── 0068-Remove-Metadata-on-reload.patch │ ├── 0069-Handle-Item-Meta-Inconsistencies.patch │ ├── 0070-Configurable-Non-Player-Arrow-Despawn-Rate.patch │ ├── 0071-Add-World-Util-Methods.patch │ ├── 0072-Custom-replacement-for-eaten-items.patch │ ├── 0073-handle-NaN-health-absorb-values-and-repair-bad-data.patch │ ├── 0074-Use-a-Shared-Random-for-Entities.patch │ ├── 0075-Configurable-spawn-chances-for-skeleton-horses.patch │ ├── 0076-Only-process-BlockPhysicsEvent-if-a-plugin-has-a-lis.patch │ ├── 0077-Entity-AddTo-RemoveFrom-World-Events.patch │ ├── 0078-Configurable-Chunk-Inhabited-Time.patch │ ├── 0079-EntityPathfindEvent.patch │ ├── 0080-Sanitise-RegionFileCache-and-make-configurable.patch │ ├── 0081-Do-not-load-chunks-for-Pathfinding.patch │ ├── 0082-Add-PlayerUseUnknownEntityEvent.patch │ ├── 0083-Configurable-random-tick-rates-for-blocks.patch │ ├── 0084-Fix-Cancelling-BlockPlaceEvent-triggering-physics.patch │ ├── 0085-Optimize-DataBits.patch │ ├── 0086-Option-to-use-vanilla-per-world-scoreboard-coloring-.patch │ ├── 0087-Configurable-Player-Collision.patch │ ├── 0088-Add-handshake-event-to-allow-plugins-to-handle-clien.patch │ ├── 0089-Configurable-RCON-IP-address.patch │ ├── 0090-EntityRegainHealthEvent-isFastRegen-API.patch │ ├── 0091-Add-ability-to-configure-frosted_ice-properties.patch │ ├── 0092-remove-null-possibility-for-getServer-singleton.patch │ ├── 0093-Don-t-save-empty-scoreboard-teams-to-scoreboard.dat.patch │ ├── 0094-LootTable-API-and-replenishable-lootables.patch │ ├── 0095-System-property-for-disabling-watchdoge.patch │ ├── 0096-Async-GameProfileCache-saving.patch │ ├── 0097-Optional-TNT-doesn-t-move-in-water.patch │ ├── 0098-Faster-redstone-torch-rapid-clock-removal.patch │ ├── 0099-Add-server-name-parameter.patch │ ├── 0100-Fix-global-sound-handling.patch │ ├── 0101-Avoid-blocking-on-Network-Manager-creation.patch │ ├── 0102-Don-t-lookup-game-profiles-that-have-no-UUID-and-no-.patch │ ├── 0103-Add-setting-for-proxy-online-mode-status.patch │ ├── 0104-Optimise-BlockState-s-hashCode-equals.patch │ ├── 0105-Configurable-packet-in-spam-threshold.patch │ ├── 0106-Configurable-flying-kick-messages.patch │ ├── 0107-Add-EntityZapEvent.patch │ ├── 0108-Filter-bad-block-entity-nbt-data-from-falling-blocks.patch │ ├── 0109-Cache-user-authenticator-threads.patch │ ├── 0110-Allow-Reloading-of-Command-Aliases.patch │ ├── 0111-Add-source-to-PlayerExpChangeEvent.patch │ ├── 0112-Add-ProjectileCollideEvent.patch │ ├── 0113-Prevent-Pathfinding-out-of-World-Border.patch │ ├── 0114-Optimize-Level.hasChunkAt-BlockPosition-Z.patch │ ├── 0115-Bound-Treasure-Maps-to-World-Border.patch │ ├── 0116-Configurable-Cartographer-Treasure-Maps.patch │ ├── 0117-Add-API-methods-to-control-if-armor-stands-can-move.patch │ ├── 0118-String-based-Action-Bar-API.patch │ ├── 0119-Properly-fix-item-duplication-bug.patch │ ├── 0120-Firework-API-s.patch │ ├── 0121-PlayerTeleportEndGatewayEvent.patch │ ├── 0122-Provide-E-TE-Chunk-count-stat-methods.patch │ ├── 0123-Enforce-Sync-Player-Saves.patch │ ├── 0124-ExperienceOrbs-API-for-Reason-Source-Triggering-play.patch │ ├── 0125-Cap-Entity-Collisions.patch │ ├── 0126-Remove-CraftScheduler-Async-Task-Debugger.patch │ ├── 0127-Properly-handle-async-calls-to-restart-the-server.patch │ ├── 0128-Add-option-to-make-parrots-stay-on-shoulders-despite.patch │ ├── 0129-Add-configuration-option-to-prevent-player-names-fro.patch │ ├── 0130-provide-a-configurable-option-to-disable-creeper-lin.patch │ ├── 0131-Item-canEntityPickup.patch │ ├── 0132-PlayerPickupItemEvent-setFlyAtPlayer.patch │ ├── 0133-PlayerAttemptPickupItemEvent.patch │ ├── 0134-Do-not-submit-profile-lookups-to-worldgen-threads.patch │ ├── 0135-Basic-PlayerProfile-API.patch │ ├── 0136-Add-UnknownCommandEvent.patch │ ├── 0137-Shoulder-Entities-Release-API.patch │ ├── 0138-Profile-Lookup-Events.patch │ ├── 0139-Block-player-logins-during-server-shutdown.patch │ ├── 0140-Entity-fromMobSpawner.patch │ ├── 0141-Improve-the-Saddle-API-for-Horses.patch │ ├── 0142-ensureServerConversions-API.patch │ ├── 0143-Implement-getI18NDisplayName.patch │ ├── 0144-ProfileWhitelistVerifyEvent.patch │ ├── 0145-Fix-this-stupid-bullshit.patch │ ├── 0146-LivingEntity-setKiller.patch │ ├── 0147-Ocelot-despawns-should-honor-nametags-and-leash.patch │ ├── 0148-Reset-spawner-timer-when-spawner-event-is-cancelled.patch │ ├── 0149-Allow-specifying-a-custom-authentication-servers-dow.patch │ ├── 0150-Add-PlayerJumpEvent.patch │ ├── 0151-handle-ServerboundKeepAlivePacket-async.patch │ ├── 0152-Expose-client-protocol-version-and-virtual-host.patch │ ├── 0153-revert-serverside-behavior-of-keepalives.patch │ ├── 0154-Send-attack-SoundEffects-only-to-players-who-can-see.patch │ ├── 0155-Add-PlayerArmorChangeEvent.patch │ ├── 0156-Prevent-logins-from-being-processed-when-the-player-.patch │ ├── 0157-Fix-MC-117075-Block-entity-unload-lag-spike.patch │ ├── 0158-use-CB-BlockState-implementations-for-captured-block.patch │ ├── 0159-API-to-get-a-BlockState-without-a-snapshot.patch │ ├── 0160-AsyncTabCompleteEvent.patch │ ├── 0161-PlayerPickupExperienceEvent.patch │ ├── 0162-Ability-to-apply-mending-to-XP-API.patch │ ├── 0163-PlayerNaturallySpawnCreaturesEvent.patch │ ├── 0164-Add-setPlayerProfile-API-for-Skulls.patch │ ├── 0165-PreCreatureSpawnEvent.patch │ ├── 0166-Fill-Profile-Property-Events.patch │ ├── 0167-Add-PlayerAdvancementCriterionGrantEvent.patch │ ├── 0168-Add-ArmorStand-Item-Meta.patch │ ├── 0169-Extend-Player-Interact-cancellation.patch │ ├── 0170-Tameable-getOwnerUniqueId-API.patch │ ├── 0171-Toggleable-player-crits.patch │ ├── 0172-Disable-Explicit-Network-Manager-Flushing.patch │ ├── 0173-Implement-extended-PaperServerListPingEvent.patch │ ├── 0174-Add-more-fields-to-AsyncPreLoginEvent.patch │ ├── 0175-Player.setPlayerProfile-API.patch │ ├── 0176-getPlayerUniqueId-API.patch │ ├── 0177-Improved-Async-Task-Scheduler.patch │ ├── 0178-Make-legacy-ping-handler-more-reliable.patch │ ├── 0179-Call-PaperServerListPingEvent-for-legacy-pings.patch │ ├── 0180-Flag-to-disable-the-channel-limit.patch │ ├── 0181-Add-openSign-method-to-HumanEntity.patch │ ├── 0182-Configurable-sprint-interruption-on-attack.patch │ ├── 0183-EndermanEscapeEvent.patch │ ├── 0184-Enderman.teleportRandomly.patch │ ├── 0185-Expand-World.spawnParticle-API-and-add-Builder.patch │ ├── 0186-Fix-exploit-that-allowed-colored-signs-to-be-created.patch │ ├── 0187-EndermanAttackPlayerEvent.patch │ ├── 0188-WitchConsumePotionEvent.patch │ ├── 0189-WitchThrowPotionEvent.patch │ ├── 0190-WitchReadyPotionEvent.patch │ ├── 0191-ItemStack-getMaxItemUseDuration.patch │ ├── 0192-Add-EntityTeleportEndGatewayEvent.patch │ ├── 0193-Unset-Ignited-flag-on-cancel-of-Explosion-Event.patch │ ├── 0194-Improve-CraftEntity-and-CraftPlayer-equals-and-hashC.patch │ ├── 0195-Configurable-LootPool-luck-formula.patch │ ├── 0196-Print-Error-details-when-failing-to-save-player-data.patch │ ├── 0197-Make-shield-blocking-delay-configurable.patch │ ├── 0198-Improve-EntityShootBowEvent.patch │ ├── 0199-PlayerReadyArrowEvent.patch │ ├── 0200-Add-entity-knockback-events.patch │ ├── 0201-Expand-Explosions-API.patch │ ├── 0202-LivingEntity-Active-Item-API.patch │ ├── 0203-RangedEntity-API.patch │ ├── 0204-Add-config-to-disable-ender-dragon-legacy-check.patch │ ├── 0205-Implement-World.getEntity-UUID-API.patch │ ├── 0206-InventoryCloseEvent-Reason-API.patch │ ├── 0207-Vex-get-setSummoner-API.patch │ ├── 0208-add-more-information-to-Entity.toString.patch │ ├── 0209-EnderDragon-Events.patch │ ├── 0210-PlayerElytraBoostEvent.patch │ ├── 0211-PlayerLaunchProjectileEvent.patch │ ├── 0212-Improve-BlockPosition-inlining.patch │ ├── 0213-Option-to-prevent-armor-stands-from-doing-entity-loo.patch │ ├── 0214-Vanished-players-don-t-have-rights.patch │ ├── 0215-Allow-disabling-armor-stand-ticking.patch │ ├── 0216-SkeletonHorse-Additions.patch │ ├── 0217-Expand-ArmorStand-API.patch │ ├── 0218-AnvilDamageEvent.patch │ ├── 0219-Add-TNTPrimeEvent.patch │ ├── 0220-Break-up-and-make-tab-spam-limits-configurable.patch │ ├── 0221-Fix-NBT-type-issues.patch │ ├── 0222-Remove-unnecessary-itemmeta-handling.patch │ ├── 0223-Add-Debug-Entities-option-to-debug-dupe-uuid-issues.patch │ ├── 0224-Add-Early-Warning-Feature-to-WatchDog.patch │ ├── 0225-Use-ConcurrentHashMap-in-JsonList.patch │ ├── 0226-Use-a-Queue-for-Queueing-Commands.patch │ ├── 0227-Ability-to-get-block-entities-from-a-chunk-without-s.patch │ ├── 0228-Optimize-BlockPosition-helper-methods.patch │ ├── 0229-Restore-vanilla-default-mob-spawn-range-and-water-an.patch │ ├── 0230-Slime-Pathfinder-Events.patch │ ├── 0231-Configurable-speed-for-water-flowing-over-lava.patch │ ├── 0232-Optimize-CraftBlockData-Creation.patch │ ├── 0233-Optimize-MappedRegistry.patch │ ├── 0234-Add-PhantomPreSpawnEvent.patch │ ├── 0235-Add-More-Creeper-API.patch │ ├── 0236-Inventory-removeItemAnySlot.patch │ ├── 0237-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch │ ├── 0238-Add-ray-tracing-methods-to-LivingEntity.patch │ ├── 0239-Expose-attack-cooldown-methods-for-Player.patch │ ├── 0240-Improve-death-events.patch │ ├── 0241-Allow-chests-to-be-placed-with-NBT-data.patch │ ├── 0242-Mob-Pathfinding-API.patch │ ├── 0243-Prevent-various-interactions-from-causing-chunk-load.patch │ ├── 0244-Prevent-mob-spawning-from-loading-generating-chunks.patch │ ├── 0245-Implement-furnace-cook-speed-multiplier-API.patch │ ├── 0246-Honor-EntityAgeable.ageLock.patch │ ├── 0247-Configurable-connection-throttle-kick-message.patch │ ├── 0248-Prevent-chunk-loading-from-Fluid-Flowing.patch │ ├── 0249-PreSpawnerSpawnEvent.patch │ ├── 0250-Add-LivingEntity-getTargetEntity.patch │ ├── 0251-Add-sun-related-API.patch │ ├── 0252-Turtle-API.patch │ ├── 0253-Call-player-spectator-target-events-and-improve-impl.patch │ ├── 0254-Add-more-Witch-API.patch │ ├── 0255-Check-Drowned-for-Villager-Aggression-Config.patch │ ├── 0256-Add-option-to-prevent-players-from-moving-into-unloa.patch │ ├── 0257-Reset-players-airTicks-on-respawn.patch │ ├── 0258-Don-t-sleep-after-profile-lookups-if-not-needed.patch │ ├── 0259-Improve-Server-Thread-Pool-and-Thread-Priorities.patch │ ├── 0260-Optimize-World-Time-Updates.patch │ ├── 0261-Restore-custom-InventoryHolder-support.patch │ ├── 0262-Fix-SpongeAbsortEvent-handling.patch │ ├── 0263-Don-t-allow-digging-into-unloaded-chunks.patch │ ├── 0264-Make-the-default-permission-message-configurable.patch │ ├── 0265-force-entity-dismount-during-teleportation.patch │ ├── 0266-Add-more-Zombie-API.patch │ ├── 0267-Book-size-limits.patch │ ├── 0268-Add-PlayerConnectionCloseEvent.patch │ ├── 0269-Replace-OfflinePlayer-getLastPlayed.patch │ ├── 0270-Workaround-for-vehicle-tracking-issue-on-disconnect.patch │ ├── 0271-Dont-block-Player-remove-if-the-handle-is-a-custom-p.patch │ ├── 0272-BlockDestroyEvent.patch │ ├── 0273-Async-command-map-building.patch │ ├── 0274-Brigadier-Mojang-API.patch │ ├── 0275-Limit-Client-Sign-length-more.patch │ ├── 0276-Call-WhitelistToggleEvent-when-whitelist-is-toggled.patch │ ├── 0277-Fixes-and-additions-to-the-spawn-reason-API.patch │ ├── 0278-Fire-event-on-GS4-query.patch │ ├── 0279-Add-PlayerPostRespawnEvent.patch │ ├── 0280-Server-Tick-Events.patch │ ├── 0281-PlayerDeathEvent-getItemsToKeep.patch │ ├── 0282-Optimize-Captured-BlockEntity-Lookup.patch │ ├── 0283-Mob-Spawner-API-Enhancements.patch │ ├── 0284-Fix-CB-call-to-changed-postToMainThread-method.patch │ ├── 0285-Fix-sounds-when-item-frames-are-modified-MC-123450.patch │ ├── 0286-Implement-CraftBlockSoundGroup.patch │ ├── 0287-Expose-the-internal-current-tick.patch │ ├── 0288-Show-blockstate-location-if-we-failed-to-read-it.patch │ ├── 0289-Only-count-Natural-Spawned-mobs-towards-natural-spaw.patch │ ├── 0290-Configurable-projectile-relative-velocity.patch │ ├── 0291-offset-item-frame-ticking.patch │ ├── 0292-Prevent-consuming-the-wrong-itemstack.patch │ ├── 0293-Dont-send-unnecessary-sign-update.patch │ ├── 0294-Add-option-to-disable-pillager-patrols.patch │ ├── 0295-Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch │ ├── 0296-Duplicate-UUID-Resolve-Option.patch │ ├── 0297-PlayerDeathEvent-shouldDropExperience.patch │ ├── 0298-Prevent-bees-loading-chunks-checking-hive-position.patch │ ├── 0299-Don-t-load-Chunks-from-Hoppers-and-other-things.patch │ ├── 0300-Optimise-EntityGetter-getPlayerByUUID.patch │ ├── 0301-Fix-item-EAR-ticks.patch │ ├── 0302-Optimize-call-to-getFluid-for-explosions.patch │ ├── 0303-Guard-against-serializing-mismatching-chunk-coordina.patch │ ├── 0304-Alternative-item-despawn-rate.patch │ ├── 0305-Tracking-Range-Improvements.patch │ ├── 0306-Bees-get-gravity-in-void.-Fixes-MC-167279.patch │ ├── 0307-Improve-Block-breakNaturally-API.patch │ ├── 0308-Add-debug-for-sync-chunk-loads.patch │ ├── 0309-Improve-java-version-check.patch │ ├── 0310-Add-ThrownEggHatchEvent.patch │ ├── 0311-Entity-Jump-API.patch │ ├── 0312-Add-option-to-nerf-pigmen-from-nether-portals.patch │ ├── 0313-Make-the-GUI-graph-fancier.patch │ ├── 0314-add-hand-to-BlockMultiPlaceEvent.patch │ ├── 0315-Validate-tripwire-hook-placement-before-update.patch │ ├── 0316-Add-option-to-allow-iron-golems-to-spawn-in-air.patch │ ├── 0317-Configurable-chance-of-villager-zombie-infection.patch │ ├── 0318-Optimise-Chunk-getFluid.patch │ ├── 0319-Set-spigots-verbose-world-setting-to-false-by-def.patch │ ├── 0320-Add-tick-times-API-and-mspt-command.patch │ ├── 0321-Expose-MinecraftServer-isRunning.patch │ ├── 0322-Add-Raw-Byte-ItemStack-Serialization.patch │ ├── 0323-Pillager-patrol-spawn-settings-and-per-player-option.patch │ ├── 0324-Remote-Connections-shouldn-t-hold-up-shutdown.patch │ ├── 0325-Do-not-allow-Vexes-to-load-chunks.patch │ ├── 0326-Prevent-Double-PlayerChunkMap-adds-crashing-server.patch │ ├── 0327-Don-t-tick-dead-players.patch │ ├── 0328-Dead-Player-s-shouldn-t-be-able-to-move.patch │ ├── 0329-Don-t-move-existing-players-to-world-spawn.patch │ ├── 0330-Optimize-Pathfinding.patch │ ├── 0331-Reduce-Either-Optional-allocation.patch │ ├── 0332-Reduce-memory-footprint-of-CompoundTag.patch │ ├── 0333-Prevent-opening-inventories-when-frozen.patch │ ├── 0334-Don-t-run-entity-collision-code-if-not-needed.patch │ ├── 0335-Implement-Player-Client-Options-API.patch │ ├── 0336-Don-t-crash-if-player-is-attempted-to-be-removed-fro.patch │ ├── 0337-Fire-PlayerJoinEvent-when-Player-is-actually-ready.patch │ ├── 0338-Move-player-to-spawn-point-if-spawn-in-unloaded-worl.patch │ ├── 0339-Add-PlayerAttackEntityCooldownResetEvent.patch │ ├── 0340-Don-t-fire-BlockFade-on-worldgen-threads.patch │ ├── 0341-Add-phantom-creative-and-insomniac-controls.patch │ ├── 0342-Fix-item-duplication-and-teleport-issues.patch │ ├── 0343-Villager-Restocks-API.patch │ ├── 0344-Set-cap-on-JDK-per-thread-native-byte-buffer-cache.patch │ ├── 0345-misc-debugging-dumps.patch │ ├── 0346-Prevent-teleporting-dead-entities.patch │ ├── 0347-Implement-Mob-Goal-API.patch │ ├── 0348-Add-villager-reputation-API.patch │ ├── 0349-ExperienceOrb-merging-stacking-API-and-fixes.patch │ ├── 0350-Fix-PotionEffect-ignores-icon-flag.patch │ ├── 0351-Potential-bed-API.patch │ ├── 0352-Wait-for-Async-Tasks-during-shutdown.patch │ ├── 0353-Ensure-EntityRaider-respects-game-and-entity-rules-f.patch │ ├── 0354-Add-option-for-console-having-all-permissions.patch │ ├── 0355-Fix-villager-trading-demand-MC-163962.patch │ ├── 0356-Maps-shouldn-t-load-chunks.patch │ ├── 0357-Use-seed-based-lookup-for-Treasure-Maps-Fixes-lag-fr.patch │ ├── 0358-Fix-CraftScheduler-runTaskTimerAsynchronously-Plugin.patch │ ├── 0359-Fix-piston-physics-inconsistency-MC-188840.patch │ ├── 0360-Fix-missing-chunks-due-to-integer-overflow.patch │ ├── 0361-Prevent-position-desync-causing-tp-exploit.patch │ ├── 0362-Inventory-getHolder-method-without-block-snapshot.patch │ ├── 0363-Add-PlayerRecipeBookClickEvent.patch │ ├── 0364-Hide-sync-chunk-writes-behind-flag.patch │ ├── 0365-Add-permission-for-command-blocks.patch │ ├── 0366-Ensure-Entity-position-and-AABB-are-never-invalid.patch │ ├── 0367-Fix-Per-World-Difficulty-Remembering-Difficulty.patch │ ├── 0368-Paper-dumpitem-command.patch │ ├── 0369-Improve-Legacy-Component-serialization-size.patch │ ├── 0370-Add-BlockStateMeta-clearBlockState.patch │ ├── 0371-Convert-legacy-attributes-in-Item-Meta.patch │ ├── 0372-Do-not-accept-invalid-client-settings.patch │ ├── 0373-Improve-fix-EntityTargetLivingEntityEvent.patch │ ├── 0374-Add-entity-liquid-API.patch │ ├── 0375-Add-PrepareResultEvent.patch │ ├── 0376-Don-t-check-chunk-for-portal-on-world-gen-entity-add.patch │ ├── 0377-Fix-arrows-never-despawning-MC-125757.patch │ ├── 0378-Thread-Safe-Vanilla-Command-permission-checking.patch │ ├── 0379-Fix-SPIGOT-5824-Bukkit-world-container-is-not-used.patch │ ├── 0380-Fix-SPIGOT-5885-Unable-to-disable-advancements.patch │ ├── 0381-Fix-AdvancementDataPlayer-leak-due-from-quitting-ear.patch │ ├── 0382-Optimize-NetworkManager-Exception-Handling.patch │ ├── 0383-Fix-some-rails-connecting-improperly.patch │ ├── 0384-Fix-regex-mistake-in-CB-NBT-int-deserialization.patch │ ├── 0385-Brand-support.patch │ ├── 0386-Add-playPickupItemAnimation-to-LivingEntity.patch │ ├── 0387-Don-t-require-FACING-data.patch │ ├── 0388-Fix-SpawnChangeEvent-not-firing-for-all-use-cases.patch │ ├── 0389-Add-moon-phase-API.patch │ ├── 0390-Do-not-let-the-server-load-chunks-from-newer-version.patch │ ├── 0391-Prevent-headless-pistons-from-being-created.patch │ ├── 0392-Add-BellRingEvent.patch │ ├── 0393-Add-zombie-targets-turtle-egg-config.patch │ ├── 0394-Buffer-joins-to-world.patch │ ├── 0395-Fix-hex-colors-not-working-in-some-kick-messages.patch │ ├── 0396-Add-more-Evoker-API.patch │ ├── 0397-Add-methods-to-get-translation-keys.patch │ ├── 0398-Create-HoverEvent-from-ItemStack-Entity.patch │ ├── 0399-Cache-block-data-strings.patch │ ├── 0400-Fix-Entity-Teleportation-and-cancel-velocity-if-tele.patch │ ├── 0401-Add-additional-open-container-api-to-HumanEntity.patch │ ├── 0402-Cache-DataFixerUpper-Rewrite-Rules-on-demand.patch │ ├── 0403-Extend-block-drop-capture-to-capture-all-items-added.patch │ ├── 0404-Expose-the-Entity-Counter-to-allow-plugins-to-use-va.patch │ ├── 0405-Lazily-track-plugin-scoreboards-by-default.patch │ ├── 0406-Entity-isTicking.patch │ ├── 0407-Fix-deop-kicking-non-whitelisted-player-when-white-l.patch │ ├── 0408-Fix-Concurrency-issue-in-ShufflingList.patch │ ├── 0409-Reset-Ender-Crystals-on-Dragon-Spawn.patch │ ├── 0410-Fix-for-large-move-vectors-crashing-server.patch │ ├── 0411-Optimise-getType-calls.patch │ ├── 0412-Villager-resetOffers.patch │ ├── 0413-Retain-block-place-order-when-capturing-blockstates.patch │ ├── 0414-Fix-item-locations-dropped-from-campfires.patch │ ├── 0415-Fix-bell-block-entity-memory-leak.patch │ ├── 0416-Avoid-error-bubbling-up-when-item-stack-is-empty-in-.patch │ ├── 0417-Add-getOfflinePlayerIfCached-String.patch │ ├── 0418-Add-ignore-discounts-API.patch │ ├── 0419-Toggle-for-removing-existing-dragon.patch │ ├── 0420-Fix-client-lag-on-advancement-loading.patch │ ├── 0421-Item-no-age-no-player-pickup.patch │ ├── 0422-Beacon-API-custom-effect-ranges.patch │ ├── 0423-Add-API-for-quit-reason.patch │ ├── 0424-Add-Wandering-Trader-spawn-rate-config-options.patch │ ├── 0425-Add-Destroy-Speed-API.patch │ ├── 0426-Fix-Player-spawnParticle-x-y-z-precision-loss.patch │ ├── 0427-Add-LivingEntity-clearActiveItem.patch │ ├── 0428-Add-PlayerItemCooldownEvent.patch │ ├── 0429-Significantly-improve-performance-of-the-end-generat.patch │ ├── 0430-More-lightning-API.patch │ ├── 0431-Climbing-should-not-bypass-cramming-gamerule.patch │ ├── 0432-Add-missing-default-perms-for-commands.patch │ ├── 0433-Add-PlayerShearBlockEvent.patch │ ├── 0434-Limit-recipe-packets.patch │ ├── 0435-Fix-CraftSound-backwards-compatibility.patch │ ├── 0436-Player-Chunk-Load-Unload-Events.patch │ ├── 0437-Optimize-Dynamic-get-Missing-Keys.patch │ ├── 0438-Expose-LivingEntity-hurt-direction.patch │ ├── 0439-Add-OBSTRUCTED-reason-to-BedEnterResult.patch │ ├── 0440-Fix-crash-from-invalid-ingredient-lists-in-VillagerA.patch │ ├── 0441-Add-TargetHitEvent.patch │ ├── 0442-MC-4-Fix-item-position-desync.patch │ ├── 0443-Additional-Block-Material-API.patch │ ├── 0444-API-to-get-Material-from-Boats-and-Minecarts.patch │ ├── 0445-Allow-disabling-mob-spawner-spawn-egg-transformation.patch │ ├── 0446-Fix-Not-a-string-Map-Conversion-spam.patch │ ├── 0447-Add-PlayerFlowerPotManipulateEvent.patch │ ├── 0448-Fix-interact-event-not-being-called-sometimes.patch │ ├── 0449-Zombie-API-breaking-doors.patch │ ├── 0450-Fix-nerfed-slime-when-splitting.patch │ ├── 0451-Add-EntityLoadCrossbowEvent.patch │ ├── 0452-Add-WorldGameRuleChangeEvent.patch │ ├── 0453-Add-ServerResourcesReloadedEvent.patch │ ├── 0454-Add-world-settings-for-mobs-picking-up-loot.patch │ ├── 0455-Add-BlockFailedDispenseEvent.patch │ ├── 0456-Add-PlayerLecternPageChangeEvent.patch │ ├── 0457-Add-PlayerLoomPatternSelectEvent.patch │ ├── 0458-Configurable-door-breaking-difficulty.patch │ ├── 0459-Empty-commands-shall-not-be-dispatched.patch │ ├── 0460-Remove-stale-POIs.patch │ ├── 0461-Fix-villager-boat-exploit.patch │ ├── 0462-Add-sendOpLevel-API.patch │ ├── 0463-Add-RegistryAccess-for-managing-Registries.patch │ ├── 0464-Add-StructuresLocateEvent.patch │ ├── 0465-Collision-option-for-requiring-a-player-participant.patch │ ├── 0466-Return-chat-component-with-empty-text-instead-of-thr.patch │ ├── 0467-Make-schedule-command-per-world.patch │ ├── 0468-Configurable-max-leash-distance.patch │ ├── 0469-Add-BlockPreDispenseEvent.patch │ ├── 0470-Add-PlayerChangeBeaconEffectEvent.patch │ ├── 0471-Add-toggle-for-always-placing-the-dragon-egg.patch │ ├── 0472-Add-PlayerStonecutterRecipeSelectEvent.patch │ ├── 0473-Expand-EntityUnleashEvent.patch │ ├── 0474-Reset-shield-blocking-on-dimension-change.patch │ ├── 0475-Add-DragonEggFormEvent.patch │ ├── 0476-Add-EntityMoveEvent.patch │ ├── 0477-added-option-to-disable-pathfinding-updates-on-block.patch │ ├── 0478-Inline-shift-direction-fields.patch │ ├── 0479-Allow-adding-items-to-BlockDropItemEvent.patch │ ├── 0480-Add-getMainThreadExecutor-to-BukkitScheduler.patch │ ├── 0481-living-entity-allow-attribute-registration.patch │ ├── 0482-fix-dead-slime-setSize-invincibility.patch │ ├── 0483-Merchant-getRecipes-should-return-an-immutable-list.patch │ ├── 0484-Expose-Tracked-Players.patch │ ├── 0485-Improve-ServerGUI.patch │ ├── 0486-fix-converting-txt-to-json-file.patch │ ├── 0487-Add-worldborder-events.patch │ ├── 0488-Add-PlayerNameEntityEvent.patch │ ├── 0489-Add-recipe-to-cook-events.patch │ ├── 0490-Add-Block-isValidTool.patch │ ├── 0491-Allow-using-signs-inside-spawn-protection.patch │ ├── 0492-Expand-world-key-API.patch │ ├── 0493-Add-fast-alternative-constructor-for-Rotations.patch │ ├── 0494-Drop-carried-item-when-player-has-disconnected.patch │ ├── 0495-forced-whitelist-use-configurable-kick-message.patch │ ├── 0496-Don-t-ignore-result-of-PlayerEditBookEvent.patch │ ├── 0497-Expose-protocol-version.patch │ ├── 0498-Enhance-console-tab-completions-for-brigadier-comman.patch │ ├── 0499-Fix-PlayerItemConsumeEvent-cancelling-properly.patch │ ├── 0500-Add-bypass-host-check.patch │ ├── 0501-Set-area-affect-cloud-rotation.patch │ ├── 0502-add-isDeeplySleeping-to-HumanEntity.patch │ ├── 0503-add-consumeFuel-to-FurnaceBurnEvent.patch │ ├── 0504-add-get-set-drop-chance-to-EntityEquipment.patch │ ├── 0505-fix-PigZombieAngerEvent-cancellation.patch │ ├── 0506-fix-PlayerItemHeldEvent-firing-twice.patch │ ├── 0507-Add-PlayerDeepSleepEvent.patch │ ├── 0508-More-World-API.patch │ ├── 0509-Add-PlayerBedFailEnterEvent.patch │ ├── 0510-Implement-methods-to-convert-between-Component-and-B.patch │ ├── 0511-Expand-PlayerRespawnEvent-fix-passed-parameter-issue.patch │ ├── 0512-Introduce-beacon-activation-deactivation-events.patch │ ├── 0513-Add-Channel-initialization-listeners.patch │ ├── 0514-Send-empty-commands-if-tab-completion-is-disabled.patch │ ├── 0515-Add-more-WanderingTrader-API.patch │ ├── 0516-Add-EntityBlockStorage-clearEntities.patch │ ├── 0517-Add-Adventure-message-to-PlayerAdvancementDoneEvent.patch │ ├── 0518-Add-HiddenPotionEffect-API.patch │ ├── 0519-Inventory-close.patch │ ├── 0520-Add-a-should-burn-in-sunlight-API-for-Phantoms-and-S.patch │ ├── 0521-Add-basic-Datapack-API.patch │ ├── 0522-Add-environment-variable-to-disable-server-gui.patch │ ├── 0523-Expand-PlayerGameModeChangeEvent.patch │ ├── 0524-ItemStack-repair-check-API.patch │ ├── 0525-More-Enchantment-API.patch │ ├── 0526-Move-range-check-for-block-placing-up.patch │ ├── 0527-Add-Mob-lookAt-API.patch │ ├── 0528-Correctly-check-if-bucket-dispenses-will-succeed-for.patch │ ├── 0529-Add-Unix-domain-socket-support.patch │ ├── 0530-Add-EntityInsideBlockEvent.patch │ ├── 0531-Improve-item-default-attribute-API.patch │ ├── 0532-Add-cause-to-Weather-ThunderChangeEvents.patch │ ├── 0533-More-Lidded-Block-API.patch │ ├── 0534-Limit-item-frame-cursors-on-maps.patch │ ├── 0535-Add-PlayerKickEvent-causes.patch │ ├── 0536-Add-PufferFishStateChangeEvent.patch │ ├── 0537-Fix-PlayerBucketEmptyEvent-result-itemstack.patch │ ├── 0538-Synchronize-PalettedContainer-instead-of-ThreadingDe.patch │ ├── 0539-Add-option-to-fix-items-merging-through-walls.patch │ ├── 0540-Add-BellRevealRaiderEvent.patch │ ├── 0541-Fix-invulnerable-end-crystals.patch │ ├── 0542-Add-ElderGuardianAppearanceEvent.patch │ ├── 0543-Optimize-Biome-Mob-Lookups-for-Mob-Spawning.patch │ ├── 0544-Line-Of-Sight-Changes.patch │ ├── 0545-add-per-world-spawn-limits.patch │ ├── 0546-Fix-potions-splash-events.patch │ ├── 0547-Add-more-LimitedRegion-API.patch │ ├── 0548-Fix-PlayerDropItemEvent-using-wrong-item.patch │ ├── 0549-Missing-Entity-API.patch │ ├── 0550-Fix-return-value-of-Block-applyBoneMeal-always-being.patch │ ├── 0551-Use-getChunkIfLoadedImmediately-in-places.patch │ ├── 0552-Fix-commands-from-signs-not-firing-command-events.patch │ ├── 0553-Add-PlayerArmSwingEvent.patch │ ├── 0554-Fix-kick-event-leave-message-not-being-sent.patch │ ├── 0555-Don-t-apply-cramming-damage-to-players.patch │ ├── 0556-Rate-options-and-timings-for-sensors-and-behaviors.patch │ ├── 0557-Add-missing-forceDrop-toggles.patch │ ├── 0558-Stinger-API.patch │ ├── 0559-Add-System.out-err-catcher.patch │ ├── 0560-Prevent-AFK-kick-while-watching-end-credits.patch │ ├── 0561-Allow-skipping-writing-of-comments-to-server.propert.patch │ ├── 0562-Add-PlayerSetSpawnEvent.patch │ ├── 0563-Make-hoppers-respect-inventory-max-stack-size.patch │ ├── 0564-Optimize-entity-tracker-passenger-checks.patch │ ├── 0565-Config-option-for-Piglins-guarding-chests.patch │ ├── 0566-Add-EntityDamageItemEvent.patch │ ├── 0567-Optimize-indirect-passenger-iteration.patch │ ├── 0568-Configurable-item-frame-map-cursor-update-interval.patch │ ├── 0569-Change-EnderEye-target-without-changing-other-things.patch │ ├── 0570-Add-BlockBreakBlockEvent.patch │ ├── 0571-Option-to-prevent-data-components-copy-in-smithing-r.patch │ ├── 0572-More-CommandBlock-API.patch │ ├── 0573-Add-missing-team-sidebar-display-slots.patch │ ├── 0574-Add-back-EntityPortalExitEvent.patch │ ├── 0575-Add-methods-to-find-targets-for-lightning-strikes.patch │ ├── 0576-Get-entity-default-attributes.patch │ ├── 0577-Left-handed-API.patch │ ├── 0578-Add-more-advancement-API.patch │ ├── 0579-Add-ItemFactory-getSpawnEgg-API.patch │ ├── 0580-Add-critical-damage-API.patch │ ├── 0581-Fix-issues-with-mob-conversion.patch │ ├── 0582-Add-hasCollision-methods-to-various-places.patch │ ├── 0583-Goat-ram-API.patch │ ├── 0584-Add-API-for-resetting-a-single-score.patch │ ├── 0585-Add-Raw-Byte-Entity-Serialization.patch │ ├── 0586-Vanilla-command-permission-fixes.patch │ ├── 0587-Do-not-run-close-logic-for-inventories-on-chunk-unlo.patch │ ├── 0588-Fix-GameProfileCache-concurrency.patch │ ├── 0589-Improve-and-expand-AsyncCatcher.patch │ ├── 0590-Add-paper-mobcaps-and-paper-playermobcaps.patch │ ├── 0591-Sanitize-ResourceLocation-error-logging.patch │ ├── 0592-Manually-inline-methods-in-BlockPosition.patch │ ├── 0593-Name-craft-scheduler-threads-according-to-the-plugin.patch │ ├── 0594-Make-sure-inlined-getChunkAt-has-inlined-logic-for-l.patch │ ├── 0595-Don-t-read-neighbour-chunk-data-off-disk-when-conver.patch │ ├── 0596-Don-t-lookup-fluid-state-when-raytracing-skip-air-bl.patch │ ├── 0597-Oprimise-map-impl-for-tracked-players.patch │ ├── 0598-Add-missing-InventoryType.patch │ ├── 0599-Optimise-BlockSoil-nearby-water-lookup.patch │ ├── 0600-Fix-merchant-inventory-not-closing-on-entity-removal.patch │ ├── 0601-Check-requirement-before-suggesting-root-nodes.patch │ ├── 0602-Don-t-respond-to-ServerboundCommandSuggestionPacket-.patch │ ├── 0603-Add-packet-limiter-config.patch │ ├── 0604-Fix-setPatternColor-on-tropical-fish-bucket-meta.patch │ ├── 0605-Ensure-valid-vehicle-status.patch │ ├── 0606-Prevent-softlocked-end-exit-portal-generation.patch │ ├── 0607-Fix-CocaoDecorator-causing-a-crash-when-trying-to-ge.patch │ ├── 0608-Don-t-log-debug-logging-being-disabled.patch │ ├── 0609-fix-various-menus-with-empty-level-accesses.patch │ ├── 0610-Preserve-overstacked-loot.patch │ ├── 0611-Update-head-rotation-in-missing-places.patch │ ├── 0612-prevent-unintended-light-block-manipulation.patch │ ├── 0613-Fix-CraftCriteria-defaults-map.patch │ ├── 0614-Fix-upstreams-block-state-factories.patch │ ├── 0615-Configurable-feature-seeds.patch │ ├── 0616-Add-root-admin-user-detection.patch │ ├── 0617-don-t-attempt-to-teleport-dead-entities.patch │ ├── 0618-Prevent-excessive-velocity-through-repeated-crits.patch │ ├── 0619-Remove-client-side-code-using-deprecated-for-removal.patch │ ├── 0620-Fix-Spigot-growth-modifiers.patch │ ├── 0621-Prevent-ContainerOpenersCounter-openCount-from-going.patch │ ├── 0622-Add-PlayerItemFrameChangeEvent.patch │ ├── 0623-Optimize-HashMapPalette.patch │ ├── 0624-Fix-ChunkSnapshot-isSectionEmpty-int-and-optimize-Pa.patch │ ├── 0625-Add-more-Campfire-API.patch │ ├── 0626-Forward-CraftEntity-in-teleport-command.patch │ ├── 0627-Improve-scoreboard-entries.patch │ ├── 0628-Entity-powdered-snow-API.patch │ ├── 0629-Add-API-for-item-entity-health.patch │ ├── 0630-Configurable-max-block-light-for-monster-spawning.patch │ ├── 0631-Fix-sticky-pistons-and-BlockPistonRetractEvent.patch │ ├── 0632-Expose-isFuel-and-canSmelt-methods-to-FurnaceInvento.patch │ ├── 0633-Bucketable-API.patch │ ├── 0634-Validate-usernames.patch │ ├── 0635-Make-water-animal-spawn-height-configurable.patch │ ├── 0636-Expose-vanilla-BiomeProvider-from-WorldInfo.patch │ ├── 0637-Add-config-option-for-worlds-affected-by-time-cmd.patch │ ├── 0638-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch │ ├── 0639-Multiple-Entries-with-Scoreboards.patch │ ├── 0640-Reset-placed-block-on-exception.patch │ ├── 0641-Add-configurable-height-for-slime-spawn.patch │ ├── 0642-Fix-xp-reward-for-baby-zombies.patch │ ├── 0643-Multi-Block-Change-API-Implementation.patch │ ├── 0644-Fix-NotePlayEvent.patch │ ├── 0645-Freeze-Tick-Lock-API.patch │ ├── 0646-More-PotionEffectType-API.patch │ ├── 0647-Use-a-CHM-for-StructureTemplate.Pallete-cache.patch │ ├── 0648-API-for-creating-command-sender-which-forwards-feedb.patch │ ├── 0649-Add-missing-structure-set-seed-configs.patch │ ├── 0650-Fix-cancelled-powdered-snow-bucket-placement.patch │ ├── 0651-Add-missing-Validate-calls-to-CraftServer-getSpawnLi.patch │ ├── 0652-Add-GameEvent-tags.patch │ ├── 0653-Execute-chunk-tasks-fairly-for-worlds-while-waiting-.patch │ ├── 0654-Furnace-RecipesUsed-API.patch │ ├── 0655-Configurable-sculk-sensor-listener-range.patch │ ├── 0656-Add-missing-block-data-API.patch │ ├── 0657-Option-to-have-default-CustomSpawners-in-custom-worl.patch │ ├── 0658-Put-world-into-worldlist-before-initing-the-world.patch │ ├── 0659-Custom-Potion-Mixes.patch │ ├── 0660-Force-close-world-loading-screen.patch │ ├── 0661-Fix-falling-block-spawn-methods.patch │ ├── 0662-Expose-furnace-minecart-push-values.patch │ ├── 0663-Fix-cancelling-ProjectileHitEvent-for-piercing-arrow.patch │ ├── 0664-More-Projectile-API.patch │ ├── 0665-Fix-swamp-hut-cat-generation-deadlock.patch │ ├── 0666-Don-t-allow-vehicle-movement-from-players-while-tele.patch │ ├── 0667-Implement-getComputedBiome-API.patch │ ├── 0668-Make-some-itemstacks-nonnull.patch │ ├── 0669-Implement-enchantWithLevels-API.patch │ ├── 0670-Fix-saving-in-unloadWorld.patch │ ├── 0671-Buffer-OOB-setBlock-calls.patch │ ├── 0672-Add-TameableDeathMessageEvent.patch │ ├── 0673-Fix-new-block-data-for-EntityChangeBlockEvent.patch │ ├── 0674-fix-player-loottables-running-when-mob-loot-gamerule.patch │ ├── 0675-Ensure-entity-passenger-world-matches-ridden-entity.patch │ ├── 0676-Cache-resource-keys-and-optimize-reference-Holder-ta.patch │ ├── 0677-Allow-changing-the-EnderDragon-podium.patch │ ├── 0678-Fix-NBT-pieces-overriding-a-block-entity-during-worl.patch │ ├── 0679-Use-username-instead-of-display-name-in-PlayerList-g.patch │ ├── 0680-Expand-PlayerItemDamageEvent.patch │ ├── 0681-WorldCreator-keepSpawnLoaded.patch │ ├── 0682-Fix-CME-in-CraftPersistentDataTypeRegistry.patch │ ├── 0683-Trigger-bee_nest_destroyed-trigger-in-the-correct-pl.patch │ ├── 0684-Add-EntityDyeEvent-and-CollarColorable-interface.patch │ ├── 0685-Fire-CauldronLevelChange-on-initial-fill.patch │ ├── 0686-fix-powder-snow-cauldrons-not-turning-to-water.patch │ ├── 0687-Add-PlayerStopUsingItemEvent.patch │ ├── 0688-Don-t-tick-markers.patch │ ├── 0689-Expand-FallingBlock-API.patch │ ├── 0690-Add-support-for-Proxy-Protocol.patch │ ├── 0691-Fix-OfflinePlayer-getBedSpawnLocation.patch │ ├── 0692-Fix-FurnaceInventory-for-smokers-and-blast-furnaces.patch │ ├── 0693-Sanitize-sent-BlockEntity-NBT.patch │ ├── 0694-Disable-component-selector-resolving-in-books-by-def.patch │ ├── 0695-Prevent-entity-loading-causing-async-lookups.patch │ ├── 0696-Throw-exception-on-world-create-while-being-ticked.patch │ ├── 0697-Dont-resent-entity-on-art-update.patch │ ├── 0698-Add-WardenAngerChangeEvent.patch │ ├── 0699-Add-option-for-strict-advancement-dimension-checks.patch │ ├── 0700-Add-missing-important-BlockStateListPopulator-method.patch │ ├── 0701-Nameable-Banner-API.patch │ ├── 0702-Don-t-broadcast-messages-to-command-blocks.patch │ ├── 0703-Prevent-empty-items-from-being-added-to-world.patch │ ├── 0704-Fix-CCE-for-SplashPotion-and-LingeringPotion-spawnin.patch │ ├── 0705-Add-Player-getFishHook.patch │ ├── 0706-Do-not-sync-load-chunk-for-dynamic-game-event-listen.patch │ ├── 0707-Add-various-missing-EntityDropItemEvent-calls.patch │ ├── 0708-Fix-Bee-flower-NPE.patch │ ├── 0709-More-Teleport-API.patch │ ├── 0710-Add-EntityPortalReadyEvent.patch │ ├── 0711-Don-t-use-level-random-in-entity-constructors.patch │ ├── 0712-Send-block-entities-after-destroy-prediction.patch │ ├── 0713-Warn-on-plugins-accessing-faraway-chunks.patch │ ├── 0714-Custom-Chat-Completion-Suggestions-API.patch │ ├── 0715-Add-and-fix-missing-BlockFadeEvents.patch │ ├── 0716-Collision-API.patch │ ├── 0717-Fix-suggest-command-message-for-brigadier-syntax-exc.patch │ ├── 0718-Block-Ticking-API.patch │ ├── 0719-Add-Velocity-IP-Forwarding-Support.patch │ ├── 0720-Add-NamespacedKey-biome-methods.patch │ ├── 0721-Fix-plugin-loggers-on-server-shutdown.patch │ ├── 0722-Stop-large-look-changes-from-crashing-the-server.patch │ ├── 0723-Fire-EntityChangeBlockEvent-in-more-places.patch │ ├── 0724-Missing-eating-regain-reason.patch │ ├── 0725-Missing-effect-cause.patch │ ├── 0726-Added-byte-array-serialization-deserialization-for-P.patch │ ├── 0727-Add-source-block-to-BlockPhysicsEvent.patch │ ├── 0728-Configurable-chat-thread-limit.patch │ ├── 0729-Mitigate-effects-of-WorldCreator-keepSpawnLoaded-ret.patch │ ├── 0730-fix-Jigsaw-block-kicking-user.patch │ ├── 0731-use-BlockFormEvent-for-mud-converting-into-clay.patch │ ├── 0732-Add-getDrops-to-BlockState.patch │ ├── 0733-Fix-a-bunch-of-vanilla-bugs.patch │ ├── 0734-Remove-unnecessary-onTrackingStart-during-navigation.patch │ ├── 0735-Fix-custom-piglin-loved-items.patch │ ├── 0736-EntityPickupItemEvent-fixes.patch │ ├── 0737-Correctly-handle-interactions-with-items-on-cooldown.patch │ ├── 0738-Add-PlayerInventorySlotChangeEvent.patch │ ├── 0739-Elder-Guardian-appearance-API.patch │ ├── 0740-Add-entity-knockback-API.patch │ ├── 0741-Detect-headless-JREs.patch │ ├── 0742-fix-entity-vehicle-collision-event-not-called.patch │ ├── 0743-Add-EntityToggleSitEvent.patch │ ├── 0744-Add-fire-tick-delay-option.patch │ ├── 0745-Add-Moving-Piston-API.patch │ ├── 0746-Ignore-impossible-spawn-tick.patch │ ├── 0747-Fix-EntityArgument-and-EntitySelectorParser-permissi.patch │ ├── 0748-Fix-EntityCombustEvent-cancellation-cant-fully-preve.patch │ ├── 0749-Add-PrePlayerAttackEntityEvent.patch │ ├── 0750-ensure-reset-EnderDragon-boss-event-name.patch │ ├── 0751-Add-Player-Warden-Warning-API.patch │ ├── 0752-More-vanilla-friendly-methods-to-update-trades.patch │ ├── 0753-Add-paper-dumplisteners-command.patch │ ├── 0754-check-global-player-list-where-appropriate.patch │ ├── 0755-Fix-async-entity-add-due-to-fungus-trees.patch │ ├── 0756-ItemStack-damage-API.patch │ ├── 0757-Friction-API.patch │ ├── 0758-Ability-to-control-player-s-insomnia-and-phantoms.patch │ ├── 0759-Fix-premature-player-kicks-on-shutdown.patch │ ├── 0760-Sync-offhand-slot-in-menus.patch │ ├── 0761-Player-Entity-Tracking-Events.patch │ ├── 0762-Limit-pet-look-distance.patch │ ├── 0763-fix-Instruments.patch │ ├── 0764-Improve-inlining-for-some-hot-BlockBehavior-and-Flui.patch │ ├── 0765-Add-BlockLockCheckEvent.patch │ ├── 0766-Add-Sneaking-API-for-Entities.patch │ ├── 0767-Improve-logging-and-errors.patch │ ├── 0768-Improve-PortalEvents.patch │ ├── 0769-Add-config-option-for-spider-worldborder-climbing.patch │ ├── 0770-Add-missing-SpigotConfig-logCommands-check.patch │ ├── 0771-Fix-NPE-on-Allay-stopDancing-while-not-dancing.patch │ ├── 0772-Flying-Fall-Damage.patch │ ├── 0773-Expose-pre-collision-moving-velocity-to-VehicleBlock.patch │ ├── 0774-config-for-disabling-entity-tag-tags.patch │ ├── 0775-Use-single-player-info-update-packet-on-join.patch │ ├── 0776-Correctly-shrink-items-during-EntityResurrectEvent.patch │ ├── 0777-Win-Screen-API.patch │ ├── 0778-Remove-CraftItemStack-setAmount-null-assignment.patch │ ├── 0779-Fix-force-opening-enchantment-tables.patch │ ├── 0780-Add-Entity-Body-Yaw-API.patch │ ├── 0781-Fix-MC-157464-Prevent-sleeping-villagers-moving-towa.patch │ ├── 0782-Add-EntityFertilizeEggEvent.patch │ ├── 0783-Fix-HumanEntity-drop-not-updating-the-client-inv.patch │ ├── 0784-Add-CompostItemEvent-and-EntityCompostItemEvent.patch │ ├── 0785-Correctly-handle-ArmorStand-invisibility.patch │ ├── 0786-Fix-advancement-triggers-for-entity-damage.patch │ ├── 0787-Fix-text-display-error-on-spawn.patch │ ├── 0788-Fix-inventories-returning-null-Locations.patch │ ├── 0789-Add-Shearable-API.patch │ ├── 0790-Fix-SpawnEggMeta-get-setSpawnedType.patch │ ├── 0791-Fix-crash-relating-to-bad-recipes-in-furnace-like-ti.patch │ ├── 0792-Treat-sequence-violations-like-they-should-be.patch │ ├── 0793-Prevent-causing-expired-keys-from-impacting-new-join.patch │ ├── 0794-Prevent-GameEvents-being-fired-from-unloaded-chunks.patch │ ├── 0795-Use-array-for-gamerule-storage.patch │ ├── 0796-Fix-a-couple-of-upstream-bed-issues.patch │ ├── 0797-Fix-demo-flag-not-enabling-demo-mode.patch │ ├── 0798-Add-Mob-Experience-reward-API.patch │ ├── 0799-Break-redstone-on-top-of-trap-doors-early.patch │ ├── 0800-Avoid-Lazy-Initialization-for-Enum-Fields.patch │ ├── 0801-More-accurate-isInOpenWater-impl.patch │ ├── 0802-Expand-PlayerItemMendEvent.patch │ ├── 0803-Refresh-ProjectileSource-for-projectiles.patch │ ├── 0804-Add-transient-modifier-API.patch │ ├── 0805-Fix-block-place-logic.patch │ ├── 0806-Fix-spigot-sound-playing-for-BlockItem-ItemStacks.patch │ ├── 0807-Call-BlockGrowEvent-for-missing-blocks.patch │ ├── 0808-Don-t-enforce-icanhasbukkit-default-if-alias-block-e.patch │ ├── 0809-fix-MapLike-spam-for-missing-key-selector.patch │ ├── 0810-Fix-sniffer-removeExploredLocation.patch │ ├── 0811-Add-method-to-remove-all-active-potion-effects.patch │ ├── 0812-Add-event-for-player-editing-sign.patch │ ├── 0813-Only-tick-item-frames-if-players-can-see-it.patch │ ├── 0814-Fix-cmd-permission-levels-for-command-blocks.patch │ ├── 0815-Add-option-to-disable-block-updates.patch │ ├── 0816-Call-missing-BlockDispenseEvent.patch │ ├── 0817-Don-t-load-chunks-for-supporting-block-checks.patch │ ├── 0818-Optimize-player-lookups-for-beacons.patch │ ├── 0819-More-Sign-Block-API.patch │ ├── 0820-fix-item-meta-for-tadpole-buckets.patch │ ├── 0821-Fix-BanList-API.patch │ ├── 0822-Determine-lava-and-water-fluid-explosion-resistance-.patch │ ├── 0823-Fix-possible-NPE-on-painting-creation.patch │ ├── 0824-Only-set-despawnTimer-for-Wandering-Traders-spawned-.patch │ ├── 0825-ExperienceOrb-should-call-EntitySpawnEvent.patch │ ├── 0826-Make-Amethyst-throw-both-Spread-and-Grow-Events.patch │ ├── 0827-Add-whitelist-events.patch │ ├── 0828-Implement-PlayerFailMoveEvent.patch │ ├── 0829-Folia-scheduler-and-owned-region-API.patch │ ├── 0830-Only-erase-allay-memory-on-non-item-targets.patch │ ├── 0831-Fix-rotation-when-spawning-display-entities.patch │ ├── 0832-Only-capture-actual-tree-growth.patch │ ├── 0833-Use-correct-source-for-mushroom-block-spread-event.patch │ ├── 0834-Respect-randomizeData-on-more-entities-when-spawning.patch │ ├── 0835-Use-correct-seed-on-api-world-load.patch │ ├── 0836-Remove-UpgradeData-neighbour-ticks-outside-of-range.patch │ ├── 0837-Cache-map-ids-on-item-frames.patch │ ├── 0838-API-for-updating-recipes-on-clients.patch │ ├── 0839-Fix-custom-statistic-criteria-creation.patch │ ├── 0840-Bandaid-fix-for-Effect.patch │ ├── 0841-SculkCatalyst-bloom-API.patch │ ├── 0842-API-for-an-entity-s-scoreboard-name.patch │ ├── 0843-Deprecate-and-replace-methods-with-old-StructureType.patch │ ├── 0844-Don-t-tab-complete-namespaced-commands-if-send-names.patch │ ├── 0845-Properly-handle-BlockBreakEvent-isDropItems.patch │ ├── 0846-Fire-entity-death-event-for-ender-dragon.patch │ ├── 0847-Configurable-entity-tracking-range-by-Y-coordinate.patch │ ├── 0848-Add-Listing-API-for-Player.patch │ ├── 0849-Configurable-Region-Compression-Format.patch │ ├── 0850-Add-BlockFace-to-BlockDamageEvent.patch │ ├── 0851-Fix-NPE-on-Boat-getStatus.patch │ ├── 0852-Expand-Pose-API.patch │ ├── 0853-More-DragonBattle-API.patch │ ├── 0854-Add-PlayerPickItemEvent.patch │ ├── 0855-Allow-trident-custom-damage.patch │ ├── 0856-Expose-hand-in-BlockCanBuildEvent.patch │ ├── 0857-Optimize-nearest-structure-border-iteration.patch │ ├── 0858-Implement-OfflinePlayer-isConnected.patch │ ├── 0859-Fix-slot-desync.patch │ ├── 0860-Add-titleOverride-to-InventoryOpenEvent.patch │ ├── 0861-Configure-sniffer-egg-hatch-time.patch │ ├── 0862-Do-crystal-portal-proximity-check-before-entity-look.patch │ ├── 0863-Skip-POI-finding-if-stuck-in-vehicle.patch │ ├── 0864-Add-slot-sanity-checks-in-container-clicks.patch │ ├── 0865-Call-BlockRedstoneEvents-properly.patch │ ├── 0866-Allow-proper-checking-of-empty-item-stacks.patch │ ├── 0867-Fix-silent-equipment-change-for-mobs.patch │ ├── 0868-Fix-spigot-s-Forced-Stats.patch │ ├── 0869-Add-missing-InventoryHolders-to-inventories.patch │ ├── 0870-Do-not-read-tile-entities-in-chunks-that-are-positio.patch │ ├── 0871-Add-missing-logs-for-log-ips-config-option.patch │ ├── 0872-Fix-race-condition-on-UpgradeData.BlockFixers-class-.patch │ ├── 0873-Fix-NPE-in-AdvancementProgress-getDateAwarded.patch │ ├── 0874-Fix-team-sidebar-objectives-not-being-cleared.patch │ ├── 0875-Fix-missing-map-initialize-event-call.patch │ ├── 0876-Update-entity-data-when-attaching-firework-to-entity.patch │ ├── 0877-Fix-UnsafeValues-loadAdvancement.patch │ ├── 0878-Add-player-idle-duration-API.patch │ ├── 0879-Don-t-check-if-we-can-see-non-visible-entities.patch │ ├── 0880-Fix-NPE-in-SculkBloomEvent-world-access.patch │ ├── 0881-Allow-null-itemstack-for-Player-sendEquipmentChange.patch │ ├── 0882-Optimize-VarInts.patch │ ├── 0883-Add-API-to-get-the-collision-shape-of-a-block-before.patch │ ├── 0884-Add-predicate-for-blocks-when-raytracing.patch │ ├── 0885-Broadcast-take-item-packets-with-collector-as-source.patch │ ├── 0886-Expand-LingeringPotion-API.patch │ ├── 0887-Fix-strikeLightningEffect-powers-lightning-rods-and-.patch │ ├── 0888-Add-hand-to-fish-event-for-all-player-interactions.patch │ ├── 0889-Fix-several-issues-with-EntityBreedEvent.patch │ ├── 0890-Add-UUID-attribute-modifier-API.patch │ ├── 0891-Fix-missing-event-call-for-entity-teleport-API.patch │ ├── 0892-Lazily-create-LootContext-for-criterions.patch │ ├── 0893-Don-t-fire-sync-events-during-worldgen.patch │ ├── 0894-Add-Structure-check-API.patch │ ├── 0895-Fix-CraftMetaItem-getAttributeModifier-duplication-c.patch │ ├── 0896-Restore-vanilla-entity-drops-behavior.patch │ ├── 0897-Dont-resend-blocks-on-interactions.patch │ ├── 0898-add-more-scoreboard-API.patch │ ├── 0899-Improve-Registry.patch │ ├── 0900-Fix-NPE-on-null-loc-for-EntityTeleportEvent.patch │ ├── 0901-Add-experience-points-API.patch │ ├── 0902-Add-drops-to-shear-events.patch │ ├── 0903-Add-PlayerShieldDisableEvent.patch │ ├── 0904-Validate-ResourceLocation-in-NBT-reading.patch │ ├── 0905-Properly-handle-experience-dropping-on-block-break.patch │ ├── 0906-Fixup-NamespacedKey-handling.patch │ ├── 0907-Expose-LootTable-of-DecoratedPot.patch │ ├── 0908-Reduce-allocation-of-Vec3D-by-entity-tracker.patch │ ├── 0909-Add-PlayerTradeEvent-and-PlayerPurchaseEvent.patch │ ├── 0910-Add-ShulkerDuplicateEvent.patch │ ├── 0911-Add-api-for-spawn-egg-texture-colors.patch │ ├── 0912-Add-Lifecycle-Event-system.patch │ ├── 0913-ItemStack-Tooltip-API.patch │ ├── 0914-Add-getChunkSnapshot-includeLightData-parameter.patch │ ├── 0915-Add-FluidState-API.patch │ ├── 0916-add-number-format-api.patch │ ├── 0917-improve-BanList-types.patch │ ├── 0918-Expanded-Hopper-API.patch │ ├── 0919-Add-BlockBreakProgressUpdateEvent.patch │ ├── 0920-Deprecate-ItemStack-setType.patch │ ├── 0921-Add-CartographyItemEvent.patch │ ├── 0922-More-Raid-API.patch │ ├── 0923-Add-onboarding-message-for-initial-server-start.patch │ ├── 0924-Configurable-max-block-fluid-ticks.patch │ ├── 0925-Fix-bees-aging-inside-hives.patch │ ├── 0926-Disable-memory-reserve-allocating.patch │ ├── 0927-Fire-EntityDamageByEntityEvent-for-unowned-wither-sk.patch │ ├── 0928-Fix-DamageSource-API.patch │ ├── 0929-Fix-creation-of-invalid-block-entity-during-world-ge.patch │ ├── 0930-Fix-possible-StackOverflowError-and-NPE-for-some-dis.patch │ ├── 0931-Improve-tag-parser-handling.patch │ ├── 0932-Item-Mutation-Fixes.patch │ ├── 0933-Per-world-ticks-per-spawn-settings.patch │ ├── 0934-Properly-track-the-changed-item-from-dispense-events.patch │ ├── 0935-Protect-Bedrock-and-End-Portal-Frames-from-being-des.patch │ ├── 0936-Add-config-for-mobs-immune-to-default-effects.patch │ ├── 0937-Deep-clone-nbt-tags-in-PDC.patch │ ├── 0938-Support-old-UUID-format-for-NBT.patch │ ├── 0939-Fix-shield-disable-inconsistency.patch │ ├── 0940-Handle-Large-Packets-disconnecting-client.patch │ ├── 0941-Fix-ItemFlags.patch │ ├── 0942-Fix-damage-modifier-inconsistencies.patch │ ├── 0943-Revert-to-vanilla-handling-of-LivingEntity-actuallyH.patch │ ├── 0944-improve-checking-handled-tags-in-itemmeta.patch │ ├── 0945-Expose-hasColor-to-leather-armor.patch │ ├── 0946-Added-API-to-get-player-ha-proxy-address.patch │ ├── 0947-General-ItemMeta-fixes.patch │ ├── 0948-More-Chest-Block-API.patch │ ├── 0949-Print-data-component-type-on-encoding-error.patch │ ├── 0950-Brigadier-based-command-API.patch │ ├── 0951-Fix-issues-with-Recipe-API.patch │ ├── 0952-Fix-equipment-slot-and-group-API.patch │ ├── 0953-Allow-Bukkit-plugin-to-use-Paper-PluginLoader-API.patch │ ├── 0954-Prevent-sending-oversized-item-data-in-equipment-and.patch │ ├── 0955-Prevent-NPE-if-hooked-entity-was-cleared.patch │ ├── 0956-Fix-cancelling-BlockPlaceEvent-calling-onRemove.patch │ ├── 0957-Add-missing-fishing-event-state.patch │ ├── 0958-Deprecate-InvAction-HOTBAR_MOVE_AND_READD.patch │ ├── 0959-Fix-sending-disconnect-packet-in-phases-where-it-doe.patch │ ├── 0960-Adopt-MaterialRerouting.patch │ ├── 0961-Suspicious-Effect-Entry-API.patch │ ├── 0962-check-if-itemstack-is-stackable-first.patch │ ├── 0963-Fix-removing-recipes-from-RecipeIterator.patch │ ├── 0964-Configurable-damage-tick-when-blocking-with-shield.patch │ ├── 0965-Properly-remove-the-experimental-smithing-inventory-.patch │ ├── 0966-disable-forced-empty-world-ticks.patch │ ├── 0967-Configurable-Sand-Duping.patch │ ├── 0968-Proxy-ItemStack-to-CraftItemStack.patch │ ├── 0969-Make-a-PDC-view-accessible-directly-from-ItemStack.patch │ ├── 0970-Prioritize-Minecraft-commands-in-function-parsing-an.patch │ ├── 0971-Fix-NPE-for-Jukebox-setRecord.patch │ ├── 0972-fix-horse-inventories.patch │ ├── 0973-Only-call-EntityDamageEvents-before-actuallyHurt.patch │ ├── 0974-Add-ItemType-getItemRarity.patch │ ├── 0975-Add-plugin-info-at-startup.patch │ ├── 0976-Make-interaction-leniency-distance-configurable.patch │ ├── 0977-Fix-PickupStatus-getting-reset.patch │ ├── 0978-Check-for-block-type-in-SculkSensorBlock-canActivate.patch │ ├── 0979-Add-API-for-CanPlaceOn-and-CanDestroy-NBT-values.patch │ ├── 0980-Configuration-for-horizontal-only-item-merging.patch │ ├── 0981-Add-skipping-world-symlink-scan.patch │ ├── 0982-Add-even-more-Enchantment-API.patch │ ├── 0983-Leashable-API.patch │ ├── 0984-Fix-CraftBukkit-drag-system.patch │ ├── 0985-Fix-SculkBloomEvent-firing-for-block-entity-loading.patch │ ├── 0986-Remove-set-damage-lootable-item-function-from-compas.patch │ ├── 0987-Add-enchantment-seed-update-API.patch │ ├── 0988-Fix-synchronise-sending-chat-to-client-with-updating.patch │ ├── 0989-Fix-InventoryOpenEvent-cancellation.patch │ ├── 0990-Fire-BlockExpEvent-on-grindstone-use.patch │ ├── 0991-Check-dead-flag-in-isAlive.patch │ ├── 0992-Add-FeatureFlag-API.patch │ ├── 0993-Item-serialization-as-json.patch │ ├── 0994-Validate-slot-in-PlayerInventory-setSlot.patch │ ├── 0995-Remove-wall-time-unused-skip-tick-protection.patch │ ├── 0996-Disable-pretty-printing-for-advancement-saving.patch │ ├── 0997-Fix-PlayerCommandPreprocessEvent-on-signed-commands.patch │ ├── 0998-Add-enchantWithLevels-with-enchantment-registry-set.patch │ ├── 0999-Improve-entity-effect-API.patch │ ├── 1000-Add-recipeBrewTime.patch │ ├── 1001-Call-bucket-events-for-cauldrons.patch │ ├── 1002-Add-PlayerInsertLecternBookEvent.patch │ ├── 1003-Void-damage-configuration-API.patch │ ├── 1004-Add-Offline-PDC-API.patch │ ├── 1005-Add-AnvilView-bypassEnchantmentLevelRestriction.patch │ ├── 1006-Add-proper-async-player-disconnections.patch │ ├── 1007-Separate-dimensiondata-executor.patch │ ├── 1008-Always-send-Banner-patterns-to-the-client.patch │ ├── 1009-API-for-checking-sent-chunks.patch │ ├── 1010-Fix-CraftWorld-isChunkGenerated.patch │ ├── 1011-Add-startup-flag-to-disable-gamerule-limits.patch │ ├── 1012-Bundle-spark.patch │ ├── 1013-Avoid-issues-with-certain-tasks-not-processing-durin.patch │ ├── 1014-Allow-using-old-ender-pearl-behavior.patch │ ├── 1015-Block-Enderpearl-Travel-Exploit.patch │ ├── 1016-Fix-inconsistencies-in-dispense-events-regarding-sta.patch │ ├── 1017-Correct-update-cursor.patch │ ├── 1018-Call-CraftPlayer-onEntityRemove-for-all-online-playe.patch │ ├── 1019-Improve-performance-of-RecipeMap-removeRecipe.patch │ ├── 1020-Reduce-work-done-in-CraftMapCanvas.drawImage-by-limi.patch │ ├── 1021-Fix-incorrect-invulnerability-damage-reduction.patch │ ├── 1022-Fix-NPE-when-EntityResurrectEvent-is-uncancelled.patch │ ├── 1023-API-to-check-if-the-server-is-sleeping.patch │ ├── 1024-API-to-allow-disallow-tick-sleeping.patch │ ├── 1025-Configurable-Entity-Despawn-Time.patch │ ├── 1026-Expanded-Art-API.patch │ ├── 1027-Only-attempt-to-find-spawn-position-if-there-isn-t-a.patch │ ├── 1028-Registry-Modification-API.patch │ ├── 1029-Add-registry-entry-and-builders.patch │ ├── 1030-Tag-Lifecycle-Events.patch │ ├── 1031-Add-feature-patch-hook-for-overrides.patch │ ├── 1032-DataComponent-API.patch │ ├── 1033-Expand-scoreboard-tag-count-validation-to-API-set.patch │ ├── 1034-Fix-Player.setPlayerListOrder-to-send-update-to-clie.patch │ ├── 1035-Fix-incorrect-command-serialization-by-creating-new-.patch │ ├── 1036-Properly-resend-entities.patch │ ├── 1037-Switch-Impl-types-to-Holderable.patch │ ├── 1038-Optimize-isInWorldBounds-and-getBlockState-for-inlin.patch │ ├── 1039-Improve-Maps-in-item-frames-performance-and-bug-fixe.patch │ ├── 1040-Optimize-Network-Manager-and-add-advanced-packet-sup.patch │ ├── 1041-Allow-Saving-of-Oversized-Chunks.patch │ ├── 1042-Flat-bedrock-generator-settings.patch │ ├── 1043-Entity-Activation-Range-2.0.patch │ ├── 1044-Anti-Xray.patch │ ├── 1045-Use-Velocity-compression-and-cipher-natives.patch │ ├── 1046-Optimize-Collision-to-not-load-chunks.patch │ ├── 1047-Optimize-GoalSelector-Goal.Flag-Set-operations.patch │ ├── 1048-Optimize-Hoppers.patch │ ├── 1049-Optimize-Voxel-Shape-Merging.patch │ ├── 1050-Optimize-Bit-Operations-by-inlining.patch │ ├── 1051-Remove-streams-from-hot-code.patch │ ├── 1052-Optimize-Pathfinder-Remove-Streams-Optimized-collect.patch │ ├── 1053-Fix-entity-type-tags-suggestions-in-selectors.patch │ ├── 1054-Handle-Oversized-block-entities-in-chunks.patch │ ├── 1055-Check-distance-in-entity-interactions.patch │ ├── 1056-optimize-dirt-and-snow-spreading.patch │ ├── 1057-Optimise-getChunkAt-calls-for-loaded-chunks.patch │ ├── 1058-Rewrite-dataconverter-system.patch │ ├── 1059-Moonrise-optimisation-patches.patch │ ├── 1060-Only-write-chunk-data-to-disk-if-it-serializes-witho.patch │ ├── 1061-Improved-Watchdog-Support.patch │ ├── 1062-Detail-more-information-in-watchdog-dumps.patch │ ├── 1063-Entity-load-save-limit-per-chunk.patch │ ├── 1064-Attempt-to-recalculate-regionfile-header-if-it-is-co.patch │ ├── 1065-Improve-performance-of-mass-crafts.patch │ ├── 1066-Incremental-chunk-and-player-saving.patch │ ├── 1067-Optimise-general-POI-access.patch │ ├── 1068-Fix-entity-tracker-desync-when-new-players-are-added.patch │ ├── 1069-Lag-compensation-ticks.patch │ ├── 1070-Optimise-collision-checking-in-player-move-packet-ha.patch │ ├── 1071-Optional-per-player-mob-spawns.patch │ ├── 1072-Improve-cancelling-PreCreatureSpawnEvent-with-per-pl.patch │ ├── 1073-Eigencraft-redstone-implementation.patch │ ├── 1074-Add-Alternate-Current-redstone-implementation.patch │ ├── 1075-Improve-exact-choice-recipe-ingredients.patch │ └── 1076-Implement-chunk-view-API.patch ├── scripts ├── apatch.sh ├── checkoutpr.sh ├── get_pr_source_diff.sh ├── upstreamCommit.sh └── upstreamMerge.sh ├── settings.gradle.kts └── test-plugin ├── build.gradle.kts └── src └── main ├── java └── io │ └── papermc │ └── testplugin │ ├── TestPlugin.java │ ├── TestPluginBootstrap.java │ ├── TestPluginLoader.java │ └── brigtests │ ├── Registration.java │ └── example │ ├── ComponentCommandExceptionType.java │ ├── ExampleAdminCommand.java │ ├── IceCreamType.java │ ├── IceCreamTypeArgument.java │ └── MaterialArgumentType.java └── resources └── paper-plugin.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/ideas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.github/DISCUSSION_TEMPLATE/ideas.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-or-incompatibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.github/ISSUE_TEMPLATE/bug-or-incompatibility.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/crash-or-stacktrace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.github/ISSUE_TEMPLATE/crash-or-stacktrace.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.github/ISSUE_TEMPLATE/new-feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance-problem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.github/ISSUE_TEMPLATE/performance-problem.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/close_invalid_prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.github/workflows/close_invalid_prs.yml -------------------------------------------------------------------------------- /.github/workflows/pr_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.github/workflows/pr_comment.yml -------------------------------------------------------------------------------- /.github/workflows/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.github/workflows/projects.yml -------------------------------------------------------------------------------- /.github/workflows/test_results.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.github/workflows/test_results.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/SECURITY.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/gradlew.bat -------------------------------------------------------------------------------- /licenses/GPL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/licenses/GPL.md -------------------------------------------------------------------------------- /licenses/MIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/licenses/MIT.md -------------------------------------------------------------------------------- /paper-api-generator/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/paper-api-generator/build.gradle.kts -------------------------------------------------------------------------------- /paper-api-generator/wideners.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/paper-api-generator/wideners.at -------------------------------------------------------------------------------- /patches/api/0001-Convert-project-to-Gradle.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0001-Convert-project-to-Gradle.patch -------------------------------------------------------------------------------- /patches/api/0002-Build-system-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0002-Build-system-changes.patch -------------------------------------------------------------------------------- /patches/api/0003-Test-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0003-Test-changes.patch -------------------------------------------------------------------------------- /patches/api/0004-Code-Generation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0004-Code-Generation.patch -------------------------------------------------------------------------------- /patches/api/0005-Add-FastUtil-to-Bukkit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0005-Add-FastUtil-to-Bukkit.patch -------------------------------------------------------------------------------- /patches/api/0006-Adventure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0006-Adventure.patch -------------------------------------------------------------------------------- /patches/api/0007-Paper-Utils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0007-Paper-Utils.patch -------------------------------------------------------------------------------- /patches/api/0008-Use-ASM-for-event-executors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0008-Use-ASM-for-event-executors.patch -------------------------------------------------------------------------------- /patches/api/0009-Paper-Plugins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0009-Paper-Plugins.patch -------------------------------------------------------------------------------- /patches/api/0010-Add-Position.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0010-Add-Position.patch -------------------------------------------------------------------------------- /patches/api/0011-Timings-v2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0011-Timings-v2.patch -------------------------------------------------------------------------------- /patches/api/0013-Player-affects-spawning-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0013-Player-affects-spawning-API.patch -------------------------------------------------------------------------------- /patches/api/0014-Add-getTPS-method.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0014-Add-getTPS-method.patch -------------------------------------------------------------------------------- /patches/api/0015-Expose-server-build-information.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0015-Expose-server-build-information.patch -------------------------------------------------------------------------------- /patches/api/0016-Entity-Origin-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0016-Entity-Origin-API.patch -------------------------------------------------------------------------------- /patches/api/0017-Add-view-distance-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0017-Add-view-distance-API.patch -------------------------------------------------------------------------------- /patches/api/0018-Add-BeaconEffectEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0018-Add-BeaconEffectEvent.patch -------------------------------------------------------------------------------- /patches/api/0019-Expose-server-CommandMap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0019-Expose-server-CommandMap.patch -------------------------------------------------------------------------------- /patches/api/0021-Add-exception-reporting-event.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0021-Add-exception-reporting-event.patch -------------------------------------------------------------------------------- /patches/api/0024-Player-Tab-List-and-Title-APIs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0024-Player-Tab-List-and-Title-APIs.patch -------------------------------------------------------------------------------- /patches/api/0026-Complete-resource-pack-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0026-Complete-resource-pack-API.patch -------------------------------------------------------------------------------- /patches/api/0027-Add-a-call-helper-to-Event.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0027-Add-a-call-helper-to-Event.patch -------------------------------------------------------------------------------- /patches/api/0030-Custom-replacement-for-eaten-items.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0030-Custom-replacement-for-eaten-items.patch -------------------------------------------------------------------------------- /patches/api/0032-EntityPathfindEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0032-EntityPathfindEvent.patch -------------------------------------------------------------------------------- /patches/api/0035-Add-PlayerUseUnknownEntityEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0035-Add-PlayerUseUnknownEntityEvent.patch -------------------------------------------------------------------------------- /patches/api/0037-Arrow-pickup-rule-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0037-Arrow-pickup-rule-API.patch -------------------------------------------------------------------------------- /patches/api/0039-LootTable-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0039-LootTable-API.patch -------------------------------------------------------------------------------- /patches/api/0040-Add-EntityZapEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0040-Add-EntityZapEvent.patch -------------------------------------------------------------------------------- /patches/api/0041-Misc-Utils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0041-Misc-Utils.patch -------------------------------------------------------------------------------- /patches/api/0042-Allow-Reloading-of-Command-Aliases.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0042-Allow-Reloading-of-Command-Aliases.patch -------------------------------------------------------------------------------- /patches/api/0043-Add-source-to-PlayerExpChangeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0043-Add-source-to-PlayerExpChangeEvent.patch -------------------------------------------------------------------------------- /patches/api/0044-Add-ProjectileCollideEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0044-Add-ProjectileCollideEvent.patch -------------------------------------------------------------------------------- /patches/api/0045-Add-String-based-Action-Bar-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0045-Add-String-based-Action-Bar-API.patch -------------------------------------------------------------------------------- /patches/api/0047-IllegalPacketEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0047-IllegalPacketEvent.patch -------------------------------------------------------------------------------- /patches/api/0048-Fireworks-API-s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0048-Fireworks-API-s.patch -------------------------------------------------------------------------------- /patches/api/0049-PlayerTeleportEndGatewayEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0049-PlayerTeleportEndGatewayEvent.patch -------------------------------------------------------------------------------- /patches/api/0053-Fix-upstream-javadocs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0053-Fix-upstream-javadocs.patch -------------------------------------------------------------------------------- /patches/api/0054-Item-canEntityPickup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0054-Item-canEntityPickup.patch -------------------------------------------------------------------------------- /patches/api/0055-PlayerAttemptPickupItemEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0055-PlayerAttemptPickupItemEvent.patch -------------------------------------------------------------------------------- /patches/api/0056-Add-UnknownCommandEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0056-Add-UnknownCommandEvent.patch -------------------------------------------------------------------------------- /patches/api/0057-Basic-PlayerProfile-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0057-Basic-PlayerProfile-API.patch -------------------------------------------------------------------------------- /patches/api/0059-Shoulder-Entities-Release-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0059-Shoulder-Entities-Release-API.patch -------------------------------------------------------------------------------- /patches/api/0060-Entity-fromMobSpawner.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0060-Entity-fromMobSpawner.patch -------------------------------------------------------------------------------- /patches/api/0061-Profile-Lookup-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0061-Profile-Lookup-Events.patch -------------------------------------------------------------------------------- /patches/api/0062-Improve-the-Saddle-API-for-Horses.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0062-Improve-the-Saddle-API-for-Horses.patch -------------------------------------------------------------------------------- /patches/api/0063-Add-getI18NDisplayName-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0063-Add-getI18NDisplayName-API.patch -------------------------------------------------------------------------------- /patches/api/0064-ensureServerConversions-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0064-ensureServerConversions-API.patch -------------------------------------------------------------------------------- /patches/api/0065-LivingEntity-setKiller.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0065-LivingEntity-setKiller.patch -------------------------------------------------------------------------------- /patches/api/0066-ProfileWhitelistVerifyEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0066-ProfileWhitelistVerifyEvent.patch -------------------------------------------------------------------------------- /patches/api/0069-Add-PlayerJumpEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0069-Add-PlayerJumpEvent.patch -------------------------------------------------------------------------------- /patches/api/0071-Add-PlayerArmorChangeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0071-Add-PlayerArmorChangeEvent.patch -------------------------------------------------------------------------------- /patches/api/0073-AsyncTabCompleteEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0073-AsyncTabCompleteEvent.patch -------------------------------------------------------------------------------- /patches/api/0076-PlayerPickupExperienceEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0076-PlayerPickupExperienceEvent.patch -------------------------------------------------------------------------------- /patches/api/0077-ExperienceOrb-merging-stacking-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0077-ExperienceOrb-merging-stacking-API.patch -------------------------------------------------------------------------------- /patches/api/0078-Ability-to-apply-mending-to-XP-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0078-Ability-to-apply-mending-to-XP-API.patch -------------------------------------------------------------------------------- /patches/api/0079-PreCreatureSpawnEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0079-PreCreatureSpawnEvent.patch -------------------------------------------------------------------------------- /patches/api/0080-PlayerNaturallySpawnCreaturesEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0080-PlayerNaturallySpawnCreaturesEvent.patch -------------------------------------------------------------------------------- /patches/api/0081-Add-setPlayerProfile-API-for-Skulls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0081-Add-setPlayerProfile-API-for-Skulls.patch -------------------------------------------------------------------------------- /patches/api/0083-Fill-Profile-Property-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0083-Fill-Profile-Property-Events.patch -------------------------------------------------------------------------------- /patches/api/0084-Add-ArmorStand-Item-Meta.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0084-Add-ArmorStand-Item-Meta.patch -------------------------------------------------------------------------------- /patches/api/0085-Optimize-Hoppers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0085-Optimize-Hoppers.patch -------------------------------------------------------------------------------- /patches/api/0086-Tameable-getOwnerUniqueId-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0086-Tameable-getOwnerUniqueId-API.patch -------------------------------------------------------------------------------- /patches/api/0089-Player.setPlayerProfile-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0089-Player.setPlayerProfile-API.patch -------------------------------------------------------------------------------- /patches/api/0090-getPlayerUniqueId-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0090-getPlayerUniqueId-API.patch -------------------------------------------------------------------------------- /patches/api/0092-Add-openSign-method-to-HumanEntity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0092-Add-openSign-method-to-HumanEntity.patch -------------------------------------------------------------------------------- /patches/api/0093-Add-Ban-Methods-to-Player-Objects.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0093-Add-Ban-Methods-to-Player-Objects.patch -------------------------------------------------------------------------------- /patches/api/0094-EndermanEscapeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0094-EndermanEscapeEvent.patch -------------------------------------------------------------------------------- /patches/api/0095-Enderman.teleportRandomly.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0095-Enderman.teleportRandomly.patch -------------------------------------------------------------------------------- /patches/api/0097-Location.isChunkLoaded-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0097-Location.isChunkLoaded-API.patch -------------------------------------------------------------------------------- /patches/api/0099-EndermanAttackPlayerEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0099-EndermanAttackPlayerEvent.patch -------------------------------------------------------------------------------- /patches/api/0100-WitchConsumePotionEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0100-WitchConsumePotionEvent.patch -------------------------------------------------------------------------------- /patches/api/0101-WitchThrowPotionEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0101-WitchThrowPotionEvent.patch -------------------------------------------------------------------------------- /patches/api/0103-PotionEffect-clone-methods.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0103-PotionEffect-clone-methods.patch -------------------------------------------------------------------------------- /patches/api/0104-WitchReadyPotionEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0104-WitchReadyPotionEvent.patch -------------------------------------------------------------------------------- /patches/api/0105-ItemStack-getMaxItemUseDuration.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0105-ItemStack-getMaxItemUseDuration.patch -------------------------------------------------------------------------------- /patches/api/0106-Add-EntityTeleportEndGatewayEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0106-Add-EntityTeleportEndGatewayEvent.patch -------------------------------------------------------------------------------- /patches/api/0110-PlayerReadyArrowEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0110-PlayerReadyArrowEvent.patch -------------------------------------------------------------------------------- /patches/api/0111-Add-entity-knockback-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0111-Add-entity-knockback-events.patch -------------------------------------------------------------------------------- /patches/api/0112-Expand-Explosions-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0112-Expand-Explosions-API.patch -------------------------------------------------------------------------------- /patches/api/0114-LivingEntity-Active-Item-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0114-LivingEntity-Active-Item-API.patch -------------------------------------------------------------------------------- /patches/api/0115-RangedEntity-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0115-RangedEntity-API.patch -------------------------------------------------------------------------------- /patches/api/0116-Add-World.getEntity-UUID-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0116-Add-World.getEntity-UUID-API.patch -------------------------------------------------------------------------------- /patches/api/0117-InventoryCloseEvent-Reason-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0117-InventoryCloseEvent-Reason-API.patch -------------------------------------------------------------------------------- /patches/api/0118-Allow-setting-the-vex-s-summoner.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0118-Allow-setting-the-vex-s-summoner.patch -------------------------------------------------------------------------------- /patches/api/0119-Entity-getChunk-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0119-Entity-getChunk-API.patch -------------------------------------------------------------------------------- /patches/api/0120-EnderDragon-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0120-EnderDragon-Events.patch -------------------------------------------------------------------------------- /patches/api/0121-PlayerElytraBoostEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0121-PlayerElytraBoostEvent.patch -------------------------------------------------------------------------------- /patches/api/0122-PlayerLaunchProjectileEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0122-PlayerLaunchProjectileEvent.patch -------------------------------------------------------------------------------- /patches/api/0124-SkeletonHorse-Additions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0124-SkeletonHorse-Additions.patch -------------------------------------------------------------------------------- /patches/api/0125-Expand-Location-Manipulation-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0125-Expand-Location-Manipulation-API.patch -------------------------------------------------------------------------------- /patches/api/0126-Expand-ArmorStand-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0126-Expand-ArmorStand-API.patch -------------------------------------------------------------------------------- /patches/api/0127-AnvilDamageEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0127-AnvilDamageEvent.patch -------------------------------------------------------------------------------- /patches/api/0128-Add-TNTPrimeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0128-Add-TNTPrimeEvent.patch -------------------------------------------------------------------------------- /patches/api/0133-Slime-Pathfinder-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0133-Slime-Pathfinder-Events.patch -------------------------------------------------------------------------------- /patches/api/0134-Add-PhantomPreSpawnEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0134-Add-PhantomPreSpawnEvent.patch -------------------------------------------------------------------------------- /patches/api/0135-Add-More-Creeper-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0135-Add-More-Creeper-API.patch -------------------------------------------------------------------------------- /patches/api/0136-Inventory-removeItemAnySlot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0136-Inventory-removeItemAnySlot.patch -------------------------------------------------------------------------------- /patches/api/0137-isChunkGenerated-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0137-isChunkGenerated-API.patch -------------------------------------------------------------------------------- /patches/api/0139-Async-Chunks-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0139-Async-Chunks-API.patch -------------------------------------------------------------------------------- /patches/api/0142-Improve-death-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0142-Improve-death-events.patch -------------------------------------------------------------------------------- /patches/api/0143-Mob-Pathfinding-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0143-Mob-Pathfinding-API.patch -------------------------------------------------------------------------------- /patches/api/0146-Material-API-additions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0146-Material-API-additions.patch -------------------------------------------------------------------------------- /patches/api/0147-Add-Material-Tags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0147-Add-Material-Tags.patch -------------------------------------------------------------------------------- /patches/api/0148-PreSpawnerSpawnEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0148-PreSpawnerSpawnEvent.patch -------------------------------------------------------------------------------- /patches/api/0149-Add-LivingEntity-getTargetEntity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0149-Add-LivingEntity-getTargetEntity.patch -------------------------------------------------------------------------------- /patches/api/0150-Add-sun-related-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0150-Add-sun-related-API.patch -------------------------------------------------------------------------------- /patches/api/0151-Turtle-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0151-Turtle-API.patch -------------------------------------------------------------------------------- /patches/api/0152-Add-spectator-target-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0152-Add-spectator-target-events.patch -------------------------------------------------------------------------------- /patches/api/0153-Add-more-Witch-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0153-Add-more-Witch-API.patch -------------------------------------------------------------------------------- /patches/api/0156-Add-more-Zombie-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0156-Add-more-Zombie-API.patch -------------------------------------------------------------------------------- /patches/api/0158-Add-PlayerConnectionCloseEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0158-Add-PlayerConnectionCloseEvent.patch -------------------------------------------------------------------------------- /patches/api/0161-BlockDestroyEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0161-BlockDestroyEvent.patch -------------------------------------------------------------------------------- /patches/api/0162-Add-WhitelistToggleEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0162-Add-WhitelistToggleEvent.patch -------------------------------------------------------------------------------- /patches/api/0163-Add-GS4-Query-event.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0163-Add-GS4-Query-event.patch -------------------------------------------------------------------------------- /patches/api/0164-Add-PlayerPostRespawnEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0164-Add-PlayerPostRespawnEvent.patch -------------------------------------------------------------------------------- /patches/api/0166-Fix-Spigot-annotation-mistakes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0166-Fix-Spigot-annotation-mistakes.patch -------------------------------------------------------------------------------- /patches/api/0167-Server-Tick-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0167-Server-Tick-Events.patch -------------------------------------------------------------------------------- /patches/api/0168-PlayerDeathEvent-getItemsToKeep.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0168-PlayerDeathEvent-getItemsToKeep.patch -------------------------------------------------------------------------------- /patches/api/0169-Add-Heightmap-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0169-Add-Heightmap-API.patch -------------------------------------------------------------------------------- /patches/api/0170-Mob-Spawner-API-Enhancements.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0170-Mob-Spawner-API-Enhancements.patch -------------------------------------------------------------------------------- /patches/api/0171-Add-BlockSoundGroup-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0171-Add-BlockSoundGroup-interface.patch -------------------------------------------------------------------------------- /patches/api/0174-Expose-the-internal-current-tick.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0174-Expose-the-internal-current-tick.patch -------------------------------------------------------------------------------- /patches/api/0175-Improve-Block-breakNaturally-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0175-Improve-Block-breakNaturally-API.patch -------------------------------------------------------------------------------- /patches/api/0177-Add-ThrownEggHatchEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0177-Add-ThrownEggHatchEvent.patch -------------------------------------------------------------------------------- /patches/api/0178-Entity-Jump-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0178-Entity-Jump-API.patch -------------------------------------------------------------------------------- /patches/api/0179-add-hand-to-BlockMultiPlaceEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0179-add-hand-to-BlockMultiPlaceEvent.patch -------------------------------------------------------------------------------- /patches/api/0180-Add-tick-times-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0180-Add-tick-times-API.patch -------------------------------------------------------------------------------- /patches/api/0181-Expose-MinecraftServer-isRunning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0181-Expose-MinecraftServer-isRunning.patch -------------------------------------------------------------------------------- /patches/api/0183-Add-Player-Client-Options-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0183-Add-Player-Client-Options-API.patch -------------------------------------------------------------------------------- /patches/api/0185-Add-item-slot-convenience-methods.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0185-Add-item-slot-convenience-methods.patch -------------------------------------------------------------------------------- /patches/api/0186-Villager-Restocks-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0186-Villager-Restocks-API.patch -------------------------------------------------------------------------------- /patches/api/0187-Add-Mob-Goal-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0187-Add-Mob-Goal-API.patch -------------------------------------------------------------------------------- /patches/api/0188-Add-villager-reputation-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0188-Add-villager-reputation-API.patch -------------------------------------------------------------------------------- /patches/api/0189-Spawn-Reason-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0189-Spawn-Reason-API.patch -------------------------------------------------------------------------------- /patches/api/0190-Potential-bed-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0190-Potential-bed-API.patch -------------------------------------------------------------------------------- /patches/api/0193-Support-components-in-ItemMeta.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0193-Support-components-in-ItemMeta.patch -------------------------------------------------------------------------------- /patches/api/0195-Add-entity-liquid-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0195-Add-entity-liquid-API.patch -------------------------------------------------------------------------------- /patches/api/0197-Add-BellRingEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0197-Add-BellRingEvent.patch -------------------------------------------------------------------------------- /patches/api/0198-Brand-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0198-Brand-support.patch -------------------------------------------------------------------------------- /patches/api/0199-Add-moon-phase-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0199-Add-moon-phase-API.patch -------------------------------------------------------------------------------- /patches/api/0201-Add-more-Evoker-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0201-Add-more-Evoker-API.patch -------------------------------------------------------------------------------- /patches/api/0202-Add-methods-to-get-translation-keys.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0202-Add-methods-to-get-translation-keys.patch -------------------------------------------------------------------------------- /patches/api/0206-Entity-isTicking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0206-Entity-isTicking.patch -------------------------------------------------------------------------------- /patches/api/0207-Villager-resetOffers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0207-Villager-resetOffers.patch -------------------------------------------------------------------------------- /patches/api/0208-Player-elytra-boost-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0208-Player-elytra-boost-API.patch -------------------------------------------------------------------------------- /patches/api/0209-Add-getOfflinePlayerIfCached-String.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0209-Add-getOfflinePlayerIfCached-String.patch -------------------------------------------------------------------------------- /patches/api/0210-Add-ignore-discounts-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0210-Add-ignore-discounts-API.patch -------------------------------------------------------------------------------- /patches/api/0211-Item-no-age-no-player-pickup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0211-Item-no-age-no-player-pickup.patch -------------------------------------------------------------------------------- /patches/api/0212-Beacon-API-custom-effect-ranges.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0212-Beacon-API-custom-effect-ranges.patch -------------------------------------------------------------------------------- /patches/api/0213-Add-API-for-quit-reason.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0213-Add-API-for-quit-reason.patch -------------------------------------------------------------------------------- /patches/api/0214-Add-Destroy-Speed-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0214-Add-Destroy-Speed-API.patch -------------------------------------------------------------------------------- /patches/api/0215-Add-LivingEntity-clearActiveItem.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0215-Add-LivingEntity-clearActiveItem.patch -------------------------------------------------------------------------------- /patches/api/0216-Add-PlayerItemCooldownEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0216-Add-PlayerItemCooldownEvent.patch -------------------------------------------------------------------------------- /patches/api/0217-More-lightning-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0217-More-lightning-API.patch -------------------------------------------------------------------------------- /patches/api/0218-Add-PlayerShearBlockEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0218-Add-PlayerShearBlockEvent.patch -------------------------------------------------------------------------------- /patches/api/0219-Player-Chunk-Load-Unload-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0219-Player-Chunk-Load-Unload-Events.patch -------------------------------------------------------------------------------- /patches/api/0220-Expose-LivingEntity-hurt-direction.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0220-Expose-LivingEntity-hurt-direction.patch -------------------------------------------------------------------------------- /patches/api/0222-Added-PlayerTradeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0222-Added-PlayerTradeEvent.patch -------------------------------------------------------------------------------- /patches/api/0223-Add-TargetHitEvent-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0223-Add-TargetHitEvent-API.patch -------------------------------------------------------------------------------- /patches/api/0224-Additional-Block-Material-API-s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0224-Additional-Block-Material-API-s.patch -------------------------------------------------------------------------------- /patches/api/0226-Add-PlayerFlowerPotManipulateEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0226-Add-PlayerFlowerPotManipulateEvent.patch -------------------------------------------------------------------------------- /patches/api/0227-Zombie-API-breaking-doors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0227-Zombie-API-breaking-doors.patch -------------------------------------------------------------------------------- /patches/api/0228-Add-EntityLoadCrossbowEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0228-Add-EntityLoadCrossbowEvent.patch -------------------------------------------------------------------------------- /patches/api/0229-Added-WorldGameRuleChangeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0229-Added-WorldGameRuleChangeEvent.patch -------------------------------------------------------------------------------- /patches/api/0230-Added-ServerResourcesReloadedEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0230-Added-ServerResourcesReloadedEvent.patch -------------------------------------------------------------------------------- /patches/api/0231-Add-BlockFailedDispenseEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0231-Add-BlockFailedDispenseEvent.patch -------------------------------------------------------------------------------- /patches/api/0232-Added-PlayerLecternPageChangeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0232-Added-PlayerLecternPageChangeEvent.patch -------------------------------------------------------------------------------- /patches/api/0233-Added-PlayerLoomPatternSelectEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0233-Added-PlayerLoomPatternSelectEvent.patch -------------------------------------------------------------------------------- /patches/api/0235-Add-sendOpLevel-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0235-Add-sendOpLevel-API.patch -------------------------------------------------------------------------------- /patches/api/0237-Add-StructuresLocateEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0237-Add-StructuresLocateEvent.patch -------------------------------------------------------------------------------- /patches/api/0238-Add-BlockPreDispenseEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0238-Add-BlockPreDispenseEvent.patch -------------------------------------------------------------------------------- /patches/api/0239-Added-PlayerChangeBeaconEffectEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0239-Added-PlayerChangeBeaconEffectEvent.patch -------------------------------------------------------------------------------- /patches/api/0242-add-DragonEggFormEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0242-add-DragonEggFormEvent.patch -------------------------------------------------------------------------------- /patches/api/0243-EntityMoveEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0243-EntityMoveEvent.patch -------------------------------------------------------------------------------- /patches/api/0247-Add-missing-effects.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0247-Add-missing-effects.patch -------------------------------------------------------------------------------- /patches/api/0248-Expose-Tracked-Players.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0248-Expose-Tracked-Players.patch -------------------------------------------------------------------------------- /patches/api/0249-Add-worldborder-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0249-Add-worldborder-events.patch -------------------------------------------------------------------------------- /patches/api/0250-added-PlayerNameEntityEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0250-added-PlayerNameEntityEvent.patch -------------------------------------------------------------------------------- /patches/api/0251-Add-recipe-to-cook-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0251-Add-recipe-to-cook-events.patch -------------------------------------------------------------------------------- /patches/api/0252-Add-Block-isValidTool.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0252-Add-Block-isValidTool.patch -------------------------------------------------------------------------------- /patches/api/0253-Expand-world-key-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0253-Expand-world-key-API.patch -------------------------------------------------------------------------------- /patches/api/0254-Improve-Item-Rarity-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0254-Improve-Item-Rarity-API.patch -------------------------------------------------------------------------------- /patches/api/0255-Expose-protocol-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0255-Expose-protocol-version.patch -------------------------------------------------------------------------------- /patches/api/0256-add-isDeeplySleeping-to-HumanEntity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0256-add-isDeeplySleeping-to-HumanEntity.patch -------------------------------------------------------------------------------- /patches/api/0257-add-consumeFuel-to-FurnaceBurnEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0257-add-consumeFuel-to-FurnaceBurnEvent.patch -------------------------------------------------------------------------------- /patches/api/0259-Added-PlayerDeepSleepEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0259-Added-PlayerDeepSleepEvent.patch -------------------------------------------------------------------------------- /patches/api/0260-More-World-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0260-More-World-API.patch -------------------------------------------------------------------------------- /patches/api/0261-Added-PlayerBedFailEnterEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0261-Added-PlayerBedFailEnterEvent.patch -------------------------------------------------------------------------------- /patches/api/0263-PlayerMoveEvent-Improvements.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0263-PlayerMoveEvent-Improvements.patch -------------------------------------------------------------------------------- /patches/api/0265-Add-more-WanderingTrader-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0265-Add-more-WanderingTrader-API.patch -------------------------------------------------------------------------------- /patches/api/0268-Inventory-close.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0268-Inventory-close.patch -------------------------------------------------------------------------------- /patches/api/0270-Add-basic-Datapack-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0270-Add-basic-Datapack-API.patch -------------------------------------------------------------------------------- /patches/api/0272-ItemStack-repair-check-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0272-ItemStack-repair-check-API.patch -------------------------------------------------------------------------------- /patches/api/0273-More-Enchantment-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0273-More-Enchantment-API.patch -------------------------------------------------------------------------------- /patches/api/0274-Add-Mob-lookAt-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0274-Add-Mob-lookAt-API.patch -------------------------------------------------------------------------------- /patches/api/0275-ItemStack-editMeta.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0275-ItemStack-editMeta.patch -------------------------------------------------------------------------------- /patches/api/0276-Add-EntityInsideBlockEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0276-Add-EntityInsideBlockEvent.patch -------------------------------------------------------------------------------- /patches/api/0277-Improve-item-default-attribute-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0277-Improve-item-default-attribute-API.patch -------------------------------------------------------------------------------- /patches/api/0279-More-Lidded-Block-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0279-More-Lidded-Block-API.patch -------------------------------------------------------------------------------- /patches/api/0280-Add-PlayerKickEvent-causes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0280-Add-PlayerKickEvent-causes.patch -------------------------------------------------------------------------------- /patches/api/0281-Add-PufferFishStateChangeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0281-Add-PufferFishStateChangeEvent.patch -------------------------------------------------------------------------------- /patches/api/0282-Add-BellRevealRaiderEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0282-Add-BellRevealRaiderEvent.patch -------------------------------------------------------------------------------- /patches/api/0283-Add-ElderGuardianAppearanceEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0283-Add-ElderGuardianAppearanceEvent.patch -------------------------------------------------------------------------------- /patches/api/0284-Add-more-line-of-sight-methods.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0284-Add-more-line-of-sight-methods.patch -------------------------------------------------------------------------------- /patches/api/0285-Add-WaterBottleSplashEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0285-Add-WaterBottleSplashEvent.patch -------------------------------------------------------------------------------- /patches/api/0286-Add-more-LimitedRegion-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0286-Add-more-LimitedRegion-API.patch -------------------------------------------------------------------------------- /patches/api/0287-Missing-Entity-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0287-Missing-Entity-API.patch -------------------------------------------------------------------------------- /patches/api/0288-Adds-PlayerArmSwingEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0288-Adds-PlayerArmSwingEvent.patch -------------------------------------------------------------------------------- /patches/api/0291-Stinger-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0291-Stinger-API.patch -------------------------------------------------------------------------------- /patches/api/0293-Add-PlayerSetSpawnEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0293-Add-PlayerSetSpawnEvent.patch -------------------------------------------------------------------------------- /patches/api/0294-Added-EntityDamageItemEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0294-Added-EntityDamageItemEvent.patch -------------------------------------------------------------------------------- /patches/api/0295-Make-EntityUnleashEvent-cancellable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0295-Make-EntityUnleashEvent-cancellable.patch -------------------------------------------------------------------------------- /patches/api/0297-Add-BlockBreakBlockEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0297-Add-BlockBreakBlockEvent.patch -------------------------------------------------------------------------------- /patches/api/0300-More-CommandBlock-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0300-More-CommandBlock-API.patch -------------------------------------------------------------------------------- /patches/api/0302-add-back-EntityPortalExitEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0302-add-back-EntityPortalExitEvent.patch -------------------------------------------------------------------------------- /patches/api/0304-Get-entity-default-attributes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0304-Get-entity-default-attributes.patch -------------------------------------------------------------------------------- /patches/api/0305-Left-handed-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0305-Left-handed-API.patch -------------------------------------------------------------------------------- /patches/api/0306-Add-critical-damage-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0306-Add-critical-damage-API.patch -------------------------------------------------------------------------------- /patches/api/0307-Add-more-advancement-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0307-Add-more-advancement-API.patch -------------------------------------------------------------------------------- /patches/api/0308-Fix-issues-with-mob-conversion.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0308-Fix-issues-with-mob-conversion.patch -------------------------------------------------------------------------------- /patches/api/0310-Goat-ram-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0310-Goat-ram-API.patch -------------------------------------------------------------------------------- /patches/api/0312-Add-Raw-Byte-Entity-Serialization.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0312-Add-Raw-Byte-Entity-Serialization.patch -------------------------------------------------------------------------------- /patches/api/0313-Add-PlayerItemFrameChangeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0313-Add-PlayerItemFrameChangeEvent.patch -------------------------------------------------------------------------------- /patches/api/0314-Add-more-Campfire-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0314-Add-more-Campfire-API.patch -------------------------------------------------------------------------------- /patches/api/0316-Improve-scoreboard-entries.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0316-Improve-scoreboard-entries.patch -------------------------------------------------------------------------------- /patches/api/0317-Entity-powdered-snow-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0317-Entity-powdered-snow-API.patch -------------------------------------------------------------------------------- /patches/api/0318-Add-API-for-item-entity-health.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0318-Add-API-for-item-entity-health.patch -------------------------------------------------------------------------------- /patches/api/0320-Bucketable-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0320-Bucketable-API.patch -------------------------------------------------------------------------------- /patches/api/0323-Multiple-Entries-with-Scoreboards.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0323-Multiple-Entries-with-Scoreboards.patch -------------------------------------------------------------------------------- /patches/api/0325-Multi-Block-Change-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0325-Multi-Block-Change-API.patch -------------------------------------------------------------------------------- /patches/api/0326-Fix-NotePlayEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0326-Fix-NotePlayEvent.patch -------------------------------------------------------------------------------- /patches/api/0327-Freeze-Tick-Lock-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0327-Freeze-Tick-Lock-API.patch -------------------------------------------------------------------------------- /patches/api/0328-Dolphin-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0328-Dolphin-API.patch -------------------------------------------------------------------------------- /patches/api/0329-More-PotionEffectType-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0329-More-PotionEffectType-API.patch -------------------------------------------------------------------------------- /patches/api/0331-Implement-regenerateChunk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0331-Implement-regenerateChunk.patch -------------------------------------------------------------------------------- /patches/api/0332-Add-GameEvent-tags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0332-Add-GameEvent-tags.patch -------------------------------------------------------------------------------- /patches/api/0333-Furnace-RecipesUsed-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0333-Furnace-RecipesUsed-API.patch -------------------------------------------------------------------------------- /patches/api/0335-Add-missing-block-data-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0335-Add-missing-block-data-API.patch -------------------------------------------------------------------------------- /patches/api/0336-Custom-Potion-Mixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0336-Custom-Potion-Mixes.patch -------------------------------------------------------------------------------- /patches/api/0337-Expose-furnace-minecart-push-values.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0337-Expose-furnace-minecart-push-values.patch -------------------------------------------------------------------------------- /patches/api/0338-More-Projectile-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0338-More-Projectile-API.patch -------------------------------------------------------------------------------- /patches/api/0339-Add-getComputedBiome-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0339-Add-getComputedBiome-API.patch -------------------------------------------------------------------------------- /patches/api/0340-Add-enchantWithLevels-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0340-Add-enchantWithLevels-API.patch -------------------------------------------------------------------------------- /patches/api/0341-Add-TameableDeathMessageEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0341-Add-TameableDeathMessageEvent.patch -------------------------------------------------------------------------------- /patches/api/0345-WorldCreator-keepSpawnLoaded.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0345-WorldCreator-keepSpawnLoaded.patch -------------------------------------------------------------------------------- /patches/api/0347-Add-PlayerStopUsingItemEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0347-Add-PlayerStopUsingItemEvent.patch -------------------------------------------------------------------------------- /patches/api/0348-Expand-FallingBlock-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0348-Expand-FallingBlock-API.patch -------------------------------------------------------------------------------- /patches/api/0350-Add-WardenAngerChangeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0350-Add-WardenAngerChangeEvent.patch -------------------------------------------------------------------------------- /patches/api/0351-Nameable-Banner-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0351-Nameable-Banner-API.patch -------------------------------------------------------------------------------- /patches/api/0352-Add-Player-getFishHook.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0352-Add-Player-getFishHook.patch -------------------------------------------------------------------------------- /patches/api/0353-More-Teleport-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0353-More-Teleport-API.patch -------------------------------------------------------------------------------- /patches/api/0354-Add-EntityPortalReadyEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0354-Add-EntityPortalReadyEvent.patch -------------------------------------------------------------------------------- /patches/api/0356-Collision-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0356-Collision-API.patch -------------------------------------------------------------------------------- /patches/api/0357-Block-Ticking-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0357-Block-Ticking-API.patch -------------------------------------------------------------------------------- /patches/api/0358-Add-NamespacedKey-biome-methods.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0358-Add-NamespacedKey-biome-methods.patch -------------------------------------------------------------------------------- /patches/api/0362-Add-getDrops-to-BlockState.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0362-Add-getDrops-to-BlockState.patch -------------------------------------------------------------------------------- /patches/api/0363-Add-PlayerInventorySlotChangeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0363-Add-PlayerInventorySlotChangeEvent.patch -------------------------------------------------------------------------------- /patches/api/0364-Elder-Guardian-appearance-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0364-Elder-Guardian-appearance-API.patch -------------------------------------------------------------------------------- /patches/api/0367-Add-entity-knockback-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0367-Add-entity-knockback-API.patch -------------------------------------------------------------------------------- /patches/api/0368-Added-EntityToggleSitEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0368-Added-EntityToggleSitEvent.patch -------------------------------------------------------------------------------- /patches/api/0369-Add-Moving-Piston-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0369-Add-Moving-Piston-API.patch -------------------------------------------------------------------------------- /patches/api/0370-Add-PrePlayerAttackEntityEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0370-Add-PrePlayerAttackEntityEvent.patch -------------------------------------------------------------------------------- /patches/api/0371-Add-Player-Warden-Warning-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0371-Add-Player-Warden-Warning-API.patch -------------------------------------------------------------------------------- /patches/api/0373-Add-paper-dumplisteners-command.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0373-Add-paper-dumplisteners-command.patch -------------------------------------------------------------------------------- /patches/api/0374-ItemStack-damage-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0374-ItemStack-damage-API.patch -------------------------------------------------------------------------------- /patches/api/0375-Add-Tick-TemporalUnit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0375-Add-Tick-TemporalUnit.patch -------------------------------------------------------------------------------- /patches/api/0376-Friction-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0376-Friction-API.patch -------------------------------------------------------------------------------- /patches/api/0377-Player-Entity-Tracking-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0377-Player-Entity-Tracking-Events.patch -------------------------------------------------------------------------------- /patches/api/0378-fix-Instruments.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0378-fix-Instruments.patch -------------------------------------------------------------------------------- /patches/api/0379-Add-BlockLockCheckEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0379-Add-BlockLockCheckEvent.patch -------------------------------------------------------------------------------- /patches/api/0380-Add-Sneaking-API-for-Entities.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0380-Add-Sneaking-API-for-Entities.patch -------------------------------------------------------------------------------- /patches/api/0381-Improve-PortalEvents.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0381-Improve-PortalEvents.patch -------------------------------------------------------------------------------- /patches/api/0382-Flying-Fall-Damage-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0382-Flying-Fall-Damage-API.patch -------------------------------------------------------------------------------- /patches/api/0384-Win-Screen-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0384-Win-Screen-API.patch -------------------------------------------------------------------------------- /patches/api/0385-Add-Entity-Body-Yaw-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0385-Add-Entity-Body-Yaw-API.patch -------------------------------------------------------------------------------- /patches/api/0387-Add-EntityFertilizeEggEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0387-Add-EntityFertilizeEggEvent.patch -------------------------------------------------------------------------------- /patches/api/0389-Add-Shearable-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0389-Add-Shearable-API.patch -------------------------------------------------------------------------------- /patches/api/0390-Fix-SpawnEggMeta-get-setSpawnedType.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0390-Fix-SpawnEggMeta-get-setSpawnedType.patch -------------------------------------------------------------------------------- /patches/api/0391-Add-Mob-Experience-reward-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0391-Add-Mob-Experience-reward-API.patch -------------------------------------------------------------------------------- /patches/api/0392-Expand-PlayerItemMendEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0392-Expand-PlayerItemMendEvent.patch -------------------------------------------------------------------------------- /patches/api/0395-Add-event-for-player-editing-sign.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0395-Add-event-for-player-editing-sign.patch -------------------------------------------------------------------------------- /patches/api/0396-More-Sign-Block-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0396-More-Sign-Block-API.patch -------------------------------------------------------------------------------- /patches/api/0397-Fix-BanList-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0397-Fix-BanList-API.patch -------------------------------------------------------------------------------- /patches/api/0398-Add-whitelist-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0398-Add-whitelist-events.patch -------------------------------------------------------------------------------- /patches/api/0399-API-for-updating-recipes-on-clients.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0399-API-for-updating-recipes-on-clients.patch -------------------------------------------------------------------------------- /patches/api/0400-Add-PlayerFailMoveEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0400-Add-PlayerFailMoveEvent.patch -------------------------------------------------------------------------------- /patches/api/0402-SculkCatalyst-bloom-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0402-SculkCatalyst-bloom-API.patch -------------------------------------------------------------------------------- /patches/api/0403-API-for-an-entity-s-scoreboard-name.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0403-API-for-an-entity-s-scoreboard-name.patch -------------------------------------------------------------------------------- /patches/api/0405-Add-Listing-API-for-Player.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0405-Add-Listing-API-for-Player.patch -------------------------------------------------------------------------------- /patches/api/0407-Fix-NPE-on-Boat-getStatus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0407-Fix-NPE-on-Boat-getStatus.patch -------------------------------------------------------------------------------- /patches/api/0408-Expand-Pose-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0408-Expand-Pose-API.patch -------------------------------------------------------------------------------- /patches/api/0409-MerchantRecipe-add-copy-constructor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0409-MerchantRecipe-add-copy-constructor.patch -------------------------------------------------------------------------------- /patches/api/0410-More-DragonBattle-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0410-More-DragonBattle-API.patch -------------------------------------------------------------------------------- /patches/api/0411-Add-PlayerPickItemEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0411-Add-PlayerPickItemEvent.patch -------------------------------------------------------------------------------- /patches/api/0412-Allow-trident-custom-damage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0412-Allow-trident-custom-damage.patch -------------------------------------------------------------------------------- /patches/api/0415-Add-OfflinePlayer-isConnected.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0415-Add-OfflinePlayer-isConnected.patch -------------------------------------------------------------------------------- /patches/api/0419-Add-player-idle-duration-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0419-Add-player-idle-duration-API.patch -------------------------------------------------------------------------------- /patches/api/0423-Attribute-Modifier-API-improvements.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0423-Attribute-Modifier-API-improvements.patch -------------------------------------------------------------------------------- /patches/api/0424-Expand-LingeringPotion-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0424-Expand-LingeringPotion-API.patch -------------------------------------------------------------------------------- /patches/api/0426-Add-Structure-check-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0426-Add-Structure-check-API.patch -------------------------------------------------------------------------------- /patches/api/0427-Experimental-annotations-change.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0427-Experimental-annotations-change.patch -------------------------------------------------------------------------------- /patches/api/0428-Add-more-scoreboard-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0428-Add-more-scoreboard-API.patch -------------------------------------------------------------------------------- /patches/api/0429-Improve-Registry.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0429-Improve-Registry.patch -------------------------------------------------------------------------------- /patches/api/0430-Add-experience-points-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0430-Add-experience-points-API.patch -------------------------------------------------------------------------------- /patches/api/0431-Add-missing-InventoryType.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0431-Add-missing-InventoryType.patch -------------------------------------------------------------------------------- /patches/api/0432-Add-drops-to-shear-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0432-Add-drops-to-shear-events.patch -------------------------------------------------------------------------------- /patches/api/0433-Add-HiddenPotionEffect-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0433-Add-HiddenPotionEffect-API.patch -------------------------------------------------------------------------------- /patches/api/0434-Add-PlayerShieldDisableEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0434-Add-PlayerShieldDisableEvent.patch -------------------------------------------------------------------------------- /patches/api/0436-Add-BlockStateMeta-clearBlockState.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0436-Add-BlockStateMeta-clearBlockState.patch -------------------------------------------------------------------------------- /patches/api/0437-Expose-LootTable-of-DecoratedPot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0437-Expose-LootTable-of-DecoratedPot.patch -------------------------------------------------------------------------------- /patches/api/0438-Add-ShulkerDuplicateEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0438-Add-ShulkerDuplicateEvent.patch -------------------------------------------------------------------------------- /patches/api/0440-Add-Lifecycle-Event-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0440-Add-Lifecycle-Event-system.patch -------------------------------------------------------------------------------- /patches/api/0441-ItemStack-Tooltip-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0441-ItemStack-Tooltip-API.patch -------------------------------------------------------------------------------- /patches/api/0443-Add-FluidState-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0443-Add-FluidState-API.patch -------------------------------------------------------------------------------- /patches/api/0444-add-number-format-api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0444-add-number-format-api.patch -------------------------------------------------------------------------------- /patches/api/0445-improve-BanList-types.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0445-improve-BanList-types.patch -------------------------------------------------------------------------------- /patches/api/0446-Suspicious-Effect-Entry-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0446-Suspicious-Effect-Entry-API.patch -------------------------------------------------------------------------------- /patches/api/0447-Fix-DamageSource-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0447-Fix-DamageSource-API.patch -------------------------------------------------------------------------------- /patches/api/0448-Expanded-Hopper-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0448-Expanded-Hopper-API.patch -------------------------------------------------------------------------------- /patches/api/0450-Add-BlockBreakProgressUpdateEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0450-Add-BlockBreakProgressUpdateEvent.patch -------------------------------------------------------------------------------- /patches/api/0451-Deprecate-ItemStack-setType.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0451-Deprecate-ItemStack-setType.patch -------------------------------------------------------------------------------- /patches/api/0452-Item-Mutation-Fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0452-Item-Mutation-Fixes.patch -------------------------------------------------------------------------------- /patches/api/0453-API-for-checking-sent-chunks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0453-API-for-checking-sent-chunks.patch -------------------------------------------------------------------------------- /patches/api/0454-Add-CartographyItemEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0454-Add-CartographyItemEvent.patch -------------------------------------------------------------------------------- /patches/api/0455-More-Raid-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0455-More-Raid-API.patch -------------------------------------------------------------------------------- /patches/api/0456-Fix-SpawnerEntry-Equipment-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0456-Fix-SpawnerEntry-Equipment-API.patch -------------------------------------------------------------------------------- /patches/api/0457-Fix-ItemFlags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0457-Fix-ItemFlags.patch -------------------------------------------------------------------------------- /patches/api/0459-Add-hook-to-remap-library-jars.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0459-Add-hook-to-remap-library-jars.patch -------------------------------------------------------------------------------- /patches/api/0460-Add-GameMode-isInvulnerable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0460-Add-GameMode-isInvulnerable.patch -------------------------------------------------------------------------------- /patches/api/0461-Expose-hasColor-to-leather-armor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0461-Expose-hasColor-to-leather-armor.patch -------------------------------------------------------------------------------- /patches/api/0463-More-Chest-Block-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0463-More-Chest-Block-API.patch -------------------------------------------------------------------------------- /patches/api/0464-Brigadier-based-command-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0464-Brigadier-based-command-API.patch -------------------------------------------------------------------------------- /patches/api/0465-Fix-issues-with-recipe-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0465-Fix-issues-with-recipe-API.patch -------------------------------------------------------------------------------- /patches/api/0466-Fix-equipment-slot-and-group-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0466-Fix-equipment-slot-and-group-API.patch -------------------------------------------------------------------------------- /patches/api/0468-General-ItemMeta-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0468-General-ItemMeta-fixes.patch -------------------------------------------------------------------------------- /patches/api/0469-Add-missing-fishing-event-state.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0469-Add-missing-fishing-event-state.patch -------------------------------------------------------------------------------- /patches/api/0471-Registry-Modification-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0471-Registry-Modification-API.patch -------------------------------------------------------------------------------- /patches/api/0473-Proxy-ItemStack-to-CraftItemStack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0473-Proxy-ItemStack-to-CraftItemStack.patch -------------------------------------------------------------------------------- /patches/api/0475-Fix-HelpCommand-searching.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0475-Fix-HelpCommand-searching.patch -------------------------------------------------------------------------------- /patches/api/0476-add-Plugin-getDataPath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0476-add-Plugin-getDataPath.patch -------------------------------------------------------------------------------- /patches/api/0477-Fix-PickupStatus-getting-reset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0477-Fix-PickupStatus-getting-reset.patch -------------------------------------------------------------------------------- /patches/api/0480-Add-even-more-Enchantment-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0480-Add-even-more-Enchantment-API.patch -------------------------------------------------------------------------------- /patches/api/0481-Leashable-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0481-Leashable-API.patch -------------------------------------------------------------------------------- /patches/api/0482-Add-enchantment-seed-update-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0482-Add-enchantment-seed-update-API.patch -------------------------------------------------------------------------------- /patches/api/0484-Add-FeatureFlag-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0484-Add-FeatureFlag-API.patch -------------------------------------------------------------------------------- /patches/api/0485-Tag-Lifecycle-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0485-Tag-Lifecycle-Events.patch -------------------------------------------------------------------------------- /patches/api/0486-Item-serialization-as-json.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0486-Item-serialization-as-json.patch -------------------------------------------------------------------------------- /patches/api/0487-create-TileStateInventoryHolder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0487-create-TileStateInventoryHolder.patch -------------------------------------------------------------------------------- /patches/api/0489-Improve-entity-effect-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0489-Improve-entity-effect-API.patch -------------------------------------------------------------------------------- /patches/api/0490-Add-recipeBrewTime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0490-Add-recipeBrewTime.patch -------------------------------------------------------------------------------- /patches/api/0491-Add-PlayerInsertLecternBookEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0491-Add-PlayerInsertLecternBookEvent.patch -------------------------------------------------------------------------------- /patches/api/0492-Void-damage-configuration-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0492-Void-damage-configuration-API.patch -------------------------------------------------------------------------------- /patches/api/0493-Add-Offline-PDC-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0493-Add-Offline-PDC-API.patch -------------------------------------------------------------------------------- /patches/api/0495-DataComponent-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0495-DataComponent-API.patch -------------------------------------------------------------------------------- /patches/api/0499-API-to-allow-disallow-tick-sleeping.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0499-API-to-allow-disallow-tick-sleeping.patch -------------------------------------------------------------------------------- /patches/api/0500-Expanded-Art-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0500-Expanded-Art-API.patch -------------------------------------------------------------------------------- /patches/api/0501-Disable-deprecated-annotation-test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/api/0501-Disable-deprecated-annotation-test.patch -------------------------------------------------------------------------------- /patches/removed/1.21.3/0451-Fix-harming-potion-dupe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/removed/1.21.3/0451-Fix-harming-potion-dupe.patch -------------------------------------------------------------------------------- /patches/server/0001-Setup-Gradle-project.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0001-Setup-Gradle-project.patch -------------------------------------------------------------------------------- /patches/server/0002-Remap-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0002-Remap-fixes.patch -------------------------------------------------------------------------------- /patches/server/0003-Build-system-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0003-Build-system-changes.patch -------------------------------------------------------------------------------- /patches/server/0004-Test-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0004-Test-changes.patch -------------------------------------------------------------------------------- /patches/server/0005-Paper-config-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0005-Paper-config-files.patch -------------------------------------------------------------------------------- /patches/server/0006-MC-Dev-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0006-MC-Dev-fixes.patch -------------------------------------------------------------------------------- /patches/server/0007-ConcurrentUtil.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0007-ConcurrentUtil.patch -------------------------------------------------------------------------------- /patches/server/0008-CB-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0008-CB-fixes.patch -------------------------------------------------------------------------------- /patches/server/0009-MC-Utils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0009-MC-Utils.patch -------------------------------------------------------------------------------- /patches/server/0010-Adventure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0010-Adventure.patch -------------------------------------------------------------------------------- /patches/server/0017-Paper-command.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0017-Paper-command.patch -------------------------------------------------------------------------------- /patches/server/0018-Paper-Metrics.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0018-Paper-Metrics.patch -------------------------------------------------------------------------------- /patches/server/0019-Paper-Plugins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0019-Paper-Plugins.patch -------------------------------------------------------------------------------- /patches/server/0020-Plugin-remapping.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0020-Plugin-remapping.patch -------------------------------------------------------------------------------- /patches/server/0021-Hook-into-CB-plugin-rewrites.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0021-Hook-into-CB-plugin-rewrites.patch -------------------------------------------------------------------------------- /patches/server/0023-Further-improve-server-tick-loop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0023-Further-improve-server-tick-loop.patch -------------------------------------------------------------------------------- /patches/server/0024-Remove-Spigot-timings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0024-Remove-Spigot-timings.patch -------------------------------------------------------------------------------- /patches/server/0026-Support-components-in-ItemMeta.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0026-Support-components-in-ItemMeta.patch -------------------------------------------------------------------------------- /patches/server/0029-Configurable-fishing-time-ranges.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0029-Configurable-fishing-time-ranges.patch -------------------------------------------------------------------------------- /patches/server/0030-Allow-nerfed-mobs-to-jump.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0030-Allow-nerfed-mobs-to-jump.patch -------------------------------------------------------------------------------- /patches/server/0033-Expose-server-build-information.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0033-Expose-server-build-information.patch -------------------------------------------------------------------------------- /patches/server/0034-Player-affects-spawning-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0034-Player-affects-spawning-API.patch -------------------------------------------------------------------------------- /patches/server/0035-Only-refresh-abilities-if-needed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0035-Only-refresh-abilities-if-needed.patch -------------------------------------------------------------------------------- /patches/server/0036-Entity-Origin-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0036-Entity-Origin-API.patch -------------------------------------------------------------------------------- /patches/server/0041-Configurable-end-credits.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0041-Configurable-end-credits.patch -------------------------------------------------------------------------------- /patches/server/0043-Optimize-explosions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0043-Optimize-explosions.patch -------------------------------------------------------------------------------- /patches/server/0044-Disable-explosion-knockback.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0044-Disable-explosion-knockback.patch -------------------------------------------------------------------------------- /patches/server/0045-Disable-thunder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0045-Disable-thunder.patch -------------------------------------------------------------------------------- /patches/server/0046-Disable-ice-and-snow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0046-Disable-ice-and-snow.patch -------------------------------------------------------------------------------- /patches/server/0048-Use-null-Locale-by-default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0048-Use-null-Locale-by-default.patch -------------------------------------------------------------------------------- /patches/server/0049-Add-BeaconEffectEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0049-Add-BeaconEffectEvent.patch -------------------------------------------------------------------------------- /patches/server/0051-Use-UserCache-for-player-heads.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0051-Use-UserCache-for-player-heads.patch -------------------------------------------------------------------------------- /patches/server/0052-Disable-spigot-tick-limiters.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0052-Disable-spigot-tick-limiters.patch -------------------------------------------------------------------------------- /patches/server/0055-Improve-Player-chat-API-handling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0055-Improve-Player-chat-API-handling.patch -------------------------------------------------------------------------------- /patches/server/0057-Expose-server-CommandMap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0057-Expose-server-CommandMap.patch -------------------------------------------------------------------------------- /patches/server/0059-Player-Tab-List-and-Title-APIs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0059-Player-Tab-List-and-Title-APIs.patch -------------------------------------------------------------------------------- /patches/server/0061-Add-velocity-warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0061-Add-velocity-warnings.patch -------------------------------------------------------------------------------- /patches/server/0062-Add-exception-reporting-event.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0062-Add-exception-reporting-event.patch -------------------------------------------------------------------------------- /patches/server/0065-Complete-resource-pack-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0065-Complete-resource-pack-API.patch -------------------------------------------------------------------------------- /patches/server/0068-Remove-Metadata-on-reload.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0068-Remove-Metadata-on-reload.patch -------------------------------------------------------------------------------- /patches/server/0071-Add-World-Util-Methods.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0071-Add-World-Util-Methods.patch -------------------------------------------------------------------------------- /patches/server/0079-EntityPathfindEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0079-EntityPathfindEvent.patch -------------------------------------------------------------------------------- /patches/server/0085-Optimize-DataBits.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0085-Optimize-DataBits.patch -------------------------------------------------------------------------------- /patches/server/0087-Configurable-Player-Collision.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0087-Configurable-Player-Collision.patch -------------------------------------------------------------------------------- /patches/server/0089-Configurable-RCON-IP-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0089-Configurable-RCON-IP-address.patch -------------------------------------------------------------------------------- /patches/server/0096-Async-GameProfileCache-saving.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0096-Async-GameProfileCache-saving.patch -------------------------------------------------------------------------------- /patches/server/0099-Add-server-name-parameter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0099-Add-server-name-parameter.patch -------------------------------------------------------------------------------- /patches/server/0100-Fix-global-sound-handling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0100-Fix-global-sound-handling.patch -------------------------------------------------------------------------------- /patches/server/0107-Add-EntityZapEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0107-Add-EntityZapEvent.patch -------------------------------------------------------------------------------- /patches/server/0112-Add-ProjectileCollideEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0112-Add-ProjectileCollideEvent.patch -------------------------------------------------------------------------------- /patches/server/0118-String-based-Action-Bar-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0118-String-based-Action-Bar-API.patch -------------------------------------------------------------------------------- /patches/server/0120-Firework-API-s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0120-Firework-API-s.patch -------------------------------------------------------------------------------- /patches/server/0121-PlayerTeleportEndGatewayEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0121-PlayerTeleportEndGatewayEvent.patch -------------------------------------------------------------------------------- /patches/server/0123-Enforce-Sync-Player-Saves.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0123-Enforce-Sync-Player-Saves.patch -------------------------------------------------------------------------------- /patches/server/0125-Cap-Entity-Collisions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0125-Cap-Entity-Collisions.patch -------------------------------------------------------------------------------- /patches/server/0131-Item-canEntityPickup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0131-Item-canEntityPickup.patch -------------------------------------------------------------------------------- /patches/server/0133-PlayerAttemptPickupItemEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0133-PlayerAttemptPickupItemEvent.patch -------------------------------------------------------------------------------- /patches/server/0135-Basic-PlayerProfile-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0135-Basic-PlayerProfile-API.patch -------------------------------------------------------------------------------- /patches/server/0136-Add-UnknownCommandEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0136-Add-UnknownCommandEvent.patch -------------------------------------------------------------------------------- /patches/server/0137-Shoulder-Entities-Release-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0137-Shoulder-Entities-Release-API.patch -------------------------------------------------------------------------------- /patches/server/0138-Profile-Lookup-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0138-Profile-Lookup-Events.patch -------------------------------------------------------------------------------- /patches/server/0140-Entity-fromMobSpawner.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0140-Entity-fromMobSpawner.patch -------------------------------------------------------------------------------- /patches/server/0142-ensureServerConversions-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0142-ensureServerConversions-API.patch -------------------------------------------------------------------------------- /patches/server/0143-Implement-getI18NDisplayName.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0143-Implement-getI18NDisplayName.patch -------------------------------------------------------------------------------- /patches/server/0144-ProfileWhitelistVerifyEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0144-ProfileWhitelistVerifyEvent.patch -------------------------------------------------------------------------------- /patches/server/0145-Fix-this-stupid-bullshit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0145-Fix-this-stupid-bullshit.patch -------------------------------------------------------------------------------- /patches/server/0146-LivingEntity-setKiller.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0146-LivingEntity-setKiller.patch -------------------------------------------------------------------------------- /patches/server/0150-Add-PlayerJumpEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0150-Add-PlayerJumpEvent.patch -------------------------------------------------------------------------------- /patches/server/0155-Add-PlayerArmorChangeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0155-Add-PlayerArmorChangeEvent.patch -------------------------------------------------------------------------------- /patches/server/0160-AsyncTabCompleteEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0160-AsyncTabCompleteEvent.patch -------------------------------------------------------------------------------- /patches/server/0161-PlayerPickupExperienceEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0161-PlayerPickupExperienceEvent.patch -------------------------------------------------------------------------------- /patches/server/0165-PreCreatureSpawnEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0165-PreCreatureSpawnEvent.patch -------------------------------------------------------------------------------- /patches/server/0166-Fill-Profile-Property-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0166-Fill-Profile-Property-Events.patch -------------------------------------------------------------------------------- /patches/server/0168-Add-ArmorStand-Item-Meta.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0168-Add-ArmorStand-Item-Meta.patch -------------------------------------------------------------------------------- /patches/server/0170-Tameable-getOwnerUniqueId-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0170-Tameable-getOwnerUniqueId-API.patch -------------------------------------------------------------------------------- /patches/server/0171-Toggleable-player-crits.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0171-Toggleable-player-crits.patch -------------------------------------------------------------------------------- /patches/server/0175-Player.setPlayerProfile-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0175-Player.setPlayerProfile-API.patch -------------------------------------------------------------------------------- /patches/server/0176-getPlayerUniqueId-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0176-getPlayerUniqueId-API.patch -------------------------------------------------------------------------------- /patches/server/0177-Improved-Async-Task-Scheduler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0177-Improved-Async-Task-Scheduler.patch -------------------------------------------------------------------------------- /patches/server/0183-EndermanEscapeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0183-EndermanEscapeEvent.patch -------------------------------------------------------------------------------- /patches/server/0184-Enderman.teleportRandomly.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0184-Enderman.teleportRandomly.patch -------------------------------------------------------------------------------- /patches/server/0187-EndermanAttackPlayerEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0187-EndermanAttackPlayerEvent.patch -------------------------------------------------------------------------------- /patches/server/0188-WitchConsumePotionEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0188-WitchConsumePotionEvent.patch -------------------------------------------------------------------------------- /patches/server/0189-WitchThrowPotionEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0189-WitchThrowPotionEvent.patch -------------------------------------------------------------------------------- /patches/server/0190-WitchReadyPotionEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0190-WitchReadyPotionEvent.patch -------------------------------------------------------------------------------- /patches/server/0198-Improve-EntityShootBowEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0198-Improve-EntityShootBowEvent.patch -------------------------------------------------------------------------------- /patches/server/0199-PlayerReadyArrowEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0199-PlayerReadyArrowEvent.patch -------------------------------------------------------------------------------- /patches/server/0200-Add-entity-knockback-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0200-Add-entity-knockback-events.patch -------------------------------------------------------------------------------- /patches/server/0201-Expand-Explosions-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0201-Expand-Explosions-API.patch -------------------------------------------------------------------------------- /patches/server/0202-LivingEntity-Active-Item-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0202-LivingEntity-Active-Item-API.patch -------------------------------------------------------------------------------- /patches/server/0203-RangedEntity-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0203-RangedEntity-API.patch -------------------------------------------------------------------------------- /patches/server/0207-Vex-get-setSummoner-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0207-Vex-get-setSummoner-API.patch -------------------------------------------------------------------------------- /patches/server/0209-EnderDragon-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0209-EnderDragon-Events.patch -------------------------------------------------------------------------------- /patches/server/0210-PlayerElytraBoostEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0210-PlayerElytraBoostEvent.patch -------------------------------------------------------------------------------- /patches/server/0211-PlayerLaunchProjectileEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0211-PlayerLaunchProjectileEvent.patch -------------------------------------------------------------------------------- /patches/server/0216-SkeletonHorse-Additions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0216-SkeletonHorse-Additions.patch -------------------------------------------------------------------------------- /patches/server/0217-Expand-ArmorStand-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0217-Expand-ArmorStand-API.patch -------------------------------------------------------------------------------- /patches/server/0218-AnvilDamageEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0218-AnvilDamageEvent.patch -------------------------------------------------------------------------------- /patches/server/0219-Add-TNTPrimeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0219-Add-TNTPrimeEvent.patch -------------------------------------------------------------------------------- /patches/server/0221-Fix-NBT-type-issues.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0221-Fix-NBT-type-issues.patch -------------------------------------------------------------------------------- /patches/server/0230-Slime-Pathfinder-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0230-Slime-Pathfinder-Events.patch -------------------------------------------------------------------------------- /patches/server/0233-Optimize-MappedRegistry.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0233-Optimize-MappedRegistry.patch -------------------------------------------------------------------------------- /patches/server/0234-Add-PhantomPreSpawnEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0234-Add-PhantomPreSpawnEvent.patch -------------------------------------------------------------------------------- /patches/server/0235-Add-More-Creeper-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0235-Add-More-Creeper-API.patch -------------------------------------------------------------------------------- /patches/server/0236-Inventory-removeItemAnySlot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0236-Inventory-removeItemAnySlot.patch -------------------------------------------------------------------------------- /patches/server/0240-Improve-death-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0240-Improve-death-events.patch -------------------------------------------------------------------------------- /patches/server/0242-Mob-Pathfinding-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0242-Mob-Pathfinding-API.patch -------------------------------------------------------------------------------- /patches/server/0246-Honor-EntityAgeable.ageLock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0246-Honor-EntityAgeable.ageLock.patch -------------------------------------------------------------------------------- /patches/server/0249-PreSpawnerSpawnEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0249-PreSpawnerSpawnEvent.patch -------------------------------------------------------------------------------- /patches/server/0251-Add-sun-related-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0251-Add-sun-related-API.patch -------------------------------------------------------------------------------- /patches/server/0252-Turtle-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0252-Turtle-API.patch -------------------------------------------------------------------------------- /patches/server/0254-Add-more-Witch-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0254-Add-more-Witch-API.patch -------------------------------------------------------------------------------- /patches/server/0260-Optimize-World-Time-Updates.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0260-Optimize-World-Time-Updates.patch -------------------------------------------------------------------------------- /patches/server/0266-Add-more-Zombie-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0266-Add-more-Zombie-API.patch -------------------------------------------------------------------------------- /patches/server/0267-Book-size-limits.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0267-Book-size-limits.patch -------------------------------------------------------------------------------- /patches/server/0272-BlockDestroyEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0272-BlockDestroyEvent.patch -------------------------------------------------------------------------------- /patches/server/0273-Async-command-map-building.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0273-Async-command-map-building.patch -------------------------------------------------------------------------------- /patches/server/0274-Brigadier-Mojang-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0274-Brigadier-Mojang-API.patch -------------------------------------------------------------------------------- /patches/server/0275-Limit-Client-Sign-length-more.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0275-Limit-Client-Sign-length-more.patch -------------------------------------------------------------------------------- /patches/server/0278-Fire-event-on-GS4-query.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0278-Fire-event-on-GS4-query.patch -------------------------------------------------------------------------------- /patches/server/0279-Add-PlayerPostRespawnEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0279-Add-PlayerPostRespawnEvent.patch -------------------------------------------------------------------------------- /patches/server/0280-Server-Tick-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0280-Server-Tick-Events.patch -------------------------------------------------------------------------------- /patches/server/0283-Mob-Spawner-API-Enhancements.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0283-Mob-Spawner-API-Enhancements.patch -------------------------------------------------------------------------------- /patches/server/0291-offset-item-frame-ticking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0291-offset-item-frame-ticking.patch -------------------------------------------------------------------------------- /patches/server/0296-Duplicate-UUID-Resolve-Option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0296-Duplicate-UUID-Resolve-Option.patch -------------------------------------------------------------------------------- /patches/server/0301-Fix-item-EAR-ticks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0301-Fix-item-EAR-ticks.patch -------------------------------------------------------------------------------- /patches/server/0304-Alternative-item-despawn-rate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0304-Alternative-item-despawn-rate.patch -------------------------------------------------------------------------------- /patches/server/0305-Tracking-Range-Improvements.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0305-Tracking-Range-Improvements.patch -------------------------------------------------------------------------------- /patches/server/0309-Improve-java-version-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0309-Improve-java-version-check.patch -------------------------------------------------------------------------------- /patches/server/0310-Add-ThrownEggHatchEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0310-Add-ThrownEggHatchEvent.patch -------------------------------------------------------------------------------- /patches/server/0311-Entity-Jump-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0311-Entity-Jump-API.patch -------------------------------------------------------------------------------- /patches/server/0313-Make-the-GUI-graph-fancier.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0313-Make-the-GUI-graph-fancier.patch -------------------------------------------------------------------------------- /patches/server/0318-Optimise-Chunk-getFluid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0318-Optimise-Chunk-getFluid.patch -------------------------------------------------------------------------------- /patches/server/0327-Don-t-tick-dead-players.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0327-Don-t-tick-dead-players.patch -------------------------------------------------------------------------------- /patches/server/0330-Optimize-Pathfinding.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0330-Optimize-Pathfinding.patch -------------------------------------------------------------------------------- /patches/server/0343-Villager-Restocks-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0343-Villager-Restocks-API.patch -------------------------------------------------------------------------------- /patches/server/0345-misc-debugging-dumps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0345-misc-debugging-dumps.patch -------------------------------------------------------------------------------- /patches/server/0347-Implement-Mob-Goal-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0347-Implement-Mob-Goal-API.patch -------------------------------------------------------------------------------- /patches/server/0348-Add-villager-reputation-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0348-Add-villager-reputation-API.patch -------------------------------------------------------------------------------- /patches/server/0351-Potential-bed-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0351-Potential-bed-API.patch -------------------------------------------------------------------------------- /patches/server/0356-Maps-shouldn-t-load-chunks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0356-Maps-shouldn-t-load-chunks.patch -------------------------------------------------------------------------------- /patches/server/0368-Paper-dumpitem-command.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0368-Paper-dumpitem-command.patch -------------------------------------------------------------------------------- /patches/server/0374-Add-entity-liquid-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0374-Add-entity-liquid-API.patch -------------------------------------------------------------------------------- /patches/server/0375-Add-PrepareResultEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0375-Add-PrepareResultEvent.patch -------------------------------------------------------------------------------- /patches/server/0385-Brand-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0385-Brand-support.patch -------------------------------------------------------------------------------- /patches/server/0387-Don-t-require-FACING-data.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0387-Don-t-require-FACING-data.patch -------------------------------------------------------------------------------- /patches/server/0389-Add-moon-phase-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0389-Add-moon-phase-API.patch -------------------------------------------------------------------------------- /patches/server/0392-Add-BellRingEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0392-Add-BellRingEvent.patch -------------------------------------------------------------------------------- /patches/server/0394-Buffer-joins-to-world.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0394-Buffer-joins-to-world.patch -------------------------------------------------------------------------------- /patches/server/0396-Add-more-Evoker-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0396-Add-more-Evoker-API.patch -------------------------------------------------------------------------------- /patches/server/0399-Cache-block-data-strings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0399-Cache-block-data-strings.patch -------------------------------------------------------------------------------- /patches/server/0406-Entity-isTicking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0406-Entity-isTicking.patch -------------------------------------------------------------------------------- /patches/server/0411-Optimise-getType-calls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0411-Optimise-getType-calls.patch -------------------------------------------------------------------------------- /patches/server/0412-Villager-resetOffers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0412-Villager-resetOffers.patch -------------------------------------------------------------------------------- /patches/server/0418-Add-ignore-discounts-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0418-Add-ignore-discounts-API.patch -------------------------------------------------------------------------------- /patches/server/0421-Item-no-age-no-player-pickup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0421-Item-no-age-no-player-pickup.patch -------------------------------------------------------------------------------- /patches/server/0423-Add-API-for-quit-reason.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0423-Add-API-for-quit-reason.patch -------------------------------------------------------------------------------- /patches/server/0425-Add-Destroy-Speed-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0425-Add-Destroy-Speed-API.patch -------------------------------------------------------------------------------- /patches/server/0428-Add-PlayerItemCooldownEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0428-Add-PlayerItemCooldownEvent.patch -------------------------------------------------------------------------------- /patches/server/0430-More-lightning-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0430-More-lightning-API.patch -------------------------------------------------------------------------------- /patches/server/0433-Add-PlayerShearBlockEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0433-Add-PlayerShearBlockEvent.patch -------------------------------------------------------------------------------- /patches/server/0434-Limit-recipe-packets.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0434-Limit-recipe-packets.patch -------------------------------------------------------------------------------- /patches/server/0441-Add-TargetHitEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0441-Add-TargetHitEvent.patch -------------------------------------------------------------------------------- /patches/server/0442-MC-4-Fix-item-position-desync.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0442-MC-4-Fix-item-position-desync.patch -------------------------------------------------------------------------------- /patches/server/0443-Additional-Block-Material-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0443-Additional-Block-Material-API.patch -------------------------------------------------------------------------------- /patches/server/0449-Zombie-API-breaking-doors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0449-Zombie-API-breaking-doors.patch -------------------------------------------------------------------------------- /patches/server/0451-Add-EntityLoadCrossbowEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0451-Add-EntityLoadCrossbowEvent.patch -------------------------------------------------------------------------------- /patches/server/0452-Add-WorldGameRuleChangeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0452-Add-WorldGameRuleChangeEvent.patch -------------------------------------------------------------------------------- /patches/server/0455-Add-BlockFailedDispenseEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0455-Add-BlockFailedDispenseEvent.patch -------------------------------------------------------------------------------- /patches/server/0460-Remove-stale-POIs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0460-Remove-stale-POIs.patch -------------------------------------------------------------------------------- /patches/server/0461-Fix-villager-boat-exploit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0461-Fix-villager-boat-exploit.patch -------------------------------------------------------------------------------- /patches/server/0462-Add-sendOpLevel-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0462-Add-sendOpLevel-API.patch -------------------------------------------------------------------------------- /patches/server/0464-Add-StructuresLocateEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0464-Add-StructuresLocateEvent.patch -------------------------------------------------------------------------------- /patches/server/0469-Add-BlockPreDispenseEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0469-Add-BlockPreDispenseEvent.patch -------------------------------------------------------------------------------- /patches/server/0473-Expand-EntityUnleashEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0473-Expand-EntityUnleashEvent.patch -------------------------------------------------------------------------------- /patches/server/0475-Add-DragonEggFormEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0475-Add-DragonEggFormEvent.patch -------------------------------------------------------------------------------- /patches/server/0476-Add-EntityMoveEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0476-Add-EntityMoveEvent.patch -------------------------------------------------------------------------------- /patches/server/0478-Inline-shift-direction-fields.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0478-Inline-shift-direction-fields.patch -------------------------------------------------------------------------------- /patches/server/0484-Expose-Tracked-Players.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0484-Expose-Tracked-Players.patch -------------------------------------------------------------------------------- /patches/server/0485-Improve-ServerGUI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0485-Improve-ServerGUI.patch -------------------------------------------------------------------------------- /patches/server/0487-Add-worldborder-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0487-Add-worldborder-events.patch -------------------------------------------------------------------------------- /patches/server/0488-Add-PlayerNameEntityEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0488-Add-PlayerNameEntityEvent.patch -------------------------------------------------------------------------------- /patches/server/0489-Add-recipe-to-cook-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0489-Add-recipe-to-cook-events.patch -------------------------------------------------------------------------------- /patches/server/0490-Add-Block-isValidTool.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0490-Add-Block-isValidTool.patch -------------------------------------------------------------------------------- /patches/server/0492-Expand-world-key-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0492-Expand-world-key-API.patch -------------------------------------------------------------------------------- /patches/server/0497-Expose-protocol-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0497-Expose-protocol-version.patch -------------------------------------------------------------------------------- /patches/server/0500-Add-bypass-host-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0500-Add-bypass-host-check.patch -------------------------------------------------------------------------------- /patches/server/0507-Add-PlayerDeepSleepEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0507-Add-PlayerDeepSleepEvent.patch -------------------------------------------------------------------------------- /patches/server/0508-More-World-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0508-More-World-API.patch -------------------------------------------------------------------------------- /patches/server/0509-Add-PlayerBedFailEnterEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0509-Add-PlayerBedFailEnterEvent.patch -------------------------------------------------------------------------------- /patches/server/0515-Add-more-WanderingTrader-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0515-Add-more-WanderingTrader-API.patch -------------------------------------------------------------------------------- /patches/server/0518-Add-HiddenPotionEffect-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0518-Add-HiddenPotionEffect-API.patch -------------------------------------------------------------------------------- /patches/server/0519-Inventory-close.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0519-Inventory-close.patch -------------------------------------------------------------------------------- /patches/server/0521-Add-basic-Datapack-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0521-Add-basic-Datapack-API.patch -------------------------------------------------------------------------------- /patches/server/0524-ItemStack-repair-check-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0524-ItemStack-repair-check-API.patch -------------------------------------------------------------------------------- /patches/server/0525-More-Enchantment-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0525-More-Enchantment-API.patch -------------------------------------------------------------------------------- /patches/server/0527-Add-Mob-lookAt-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0527-Add-Mob-lookAt-API.patch -------------------------------------------------------------------------------- /patches/server/0530-Add-EntityInsideBlockEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0530-Add-EntityInsideBlockEvent.patch -------------------------------------------------------------------------------- /patches/server/0533-More-Lidded-Block-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0533-More-Lidded-Block-API.patch -------------------------------------------------------------------------------- /patches/server/0535-Add-PlayerKickEvent-causes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0535-Add-PlayerKickEvent-causes.patch -------------------------------------------------------------------------------- /patches/server/0540-Add-BellRevealRaiderEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0540-Add-BellRevealRaiderEvent.patch -------------------------------------------------------------------------------- /patches/server/0541-Fix-invulnerable-end-crystals.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0541-Fix-invulnerable-end-crystals.patch -------------------------------------------------------------------------------- /patches/server/0544-Line-Of-Sight-Changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0544-Line-Of-Sight-Changes.patch -------------------------------------------------------------------------------- /patches/server/0545-add-per-world-spawn-limits.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0545-add-per-world-spawn-limits.patch -------------------------------------------------------------------------------- /patches/server/0546-Fix-potions-splash-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0546-Fix-potions-splash-events.patch -------------------------------------------------------------------------------- /patches/server/0547-Add-more-LimitedRegion-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0547-Add-more-LimitedRegion-API.patch -------------------------------------------------------------------------------- /patches/server/0549-Missing-Entity-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0549-Missing-Entity-API.patch -------------------------------------------------------------------------------- /patches/server/0553-Add-PlayerArmSwingEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0553-Add-PlayerArmSwingEvent.patch -------------------------------------------------------------------------------- /patches/server/0557-Add-missing-forceDrop-toggles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0557-Add-missing-forceDrop-toggles.patch -------------------------------------------------------------------------------- /patches/server/0558-Stinger-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0558-Stinger-API.patch -------------------------------------------------------------------------------- /patches/server/0559-Add-System.out-err-catcher.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0559-Add-System.out-err-catcher.patch -------------------------------------------------------------------------------- /patches/server/0562-Add-PlayerSetSpawnEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0562-Add-PlayerSetSpawnEvent.patch -------------------------------------------------------------------------------- /patches/server/0566-Add-EntityDamageItemEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0566-Add-EntityDamageItemEvent.patch -------------------------------------------------------------------------------- /patches/server/0570-Add-BlockBreakBlockEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0570-Add-BlockBreakBlockEvent.patch -------------------------------------------------------------------------------- /patches/server/0572-More-CommandBlock-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0572-More-CommandBlock-API.patch -------------------------------------------------------------------------------- /patches/server/0576-Get-entity-default-attributes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0576-Get-entity-default-attributes.patch -------------------------------------------------------------------------------- /patches/server/0577-Left-handed-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0577-Left-handed-API.patch -------------------------------------------------------------------------------- /patches/server/0578-Add-more-advancement-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0578-Add-more-advancement-API.patch -------------------------------------------------------------------------------- /patches/server/0580-Add-critical-damage-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0580-Add-critical-damage-API.patch -------------------------------------------------------------------------------- /patches/server/0583-Goat-ram-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0583-Goat-ram-API.patch -------------------------------------------------------------------------------- /patches/server/0598-Add-missing-InventoryType.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0598-Add-missing-InventoryType.patch -------------------------------------------------------------------------------- /patches/server/0603-Add-packet-limiter-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0603-Add-packet-limiter-config.patch -------------------------------------------------------------------------------- /patches/server/0605-Ensure-valid-vehicle-status.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0605-Ensure-valid-vehicle-status.patch -------------------------------------------------------------------------------- /patches/server/0610-Preserve-overstacked-loot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0610-Preserve-overstacked-loot.patch -------------------------------------------------------------------------------- /patches/server/0615-Configurable-feature-seeds.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0615-Configurable-feature-seeds.patch -------------------------------------------------------------------------------- /patches/server/0616-Add-root-admin-user-detection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0616-Add-root-admin-user-detection.patch -------------------------------------------------------------------------------- /patches/server/0620-Fix-Spigot-growth-modifiers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0620-Fix-Spigot-growth-modifiers.patch -------------------------------------------------------------------------------- /patches/server/0623-Optimize-HashMapPalette.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0623-Optimize-HashMapPalette.patch -------------------------------------------------------------------------------- /patches/server/0625-Add-more-Campfire-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0625-Add-more-Campfire-API.patch -------------------------------------------------------------------------------- /patches/server/0627-Improve-scoreboard-entries.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0627-Improve-scoreboard-entries.patch -------------------------------------------------------------------------------- /patches/server/0628-Entity-powdered-snow-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0628-Entity-powdered-snow-API.patch -------------------------------------------------------------------------------- /patches/server/0633-Bucketable-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0633-Bucketable-API.patch -------------------------------------------------------------------------------- /patches/server/0634-Validate-usernames.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0634-Validate-usernames.patch -------------------------------------------------------------------------------- /patches/server/0644-Fix-NotePlayEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0644-Fix-NotePlayEvent.patch -------------------------------------------------------------------------------- /patches/server/0645-Freeze-Tick-Lock-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0645-Freeze-Tick-Lock-API.patch -------------------------------------------------------------------------------- /patches/server/0646-More-PotionEffectType-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0646-More-PotionEffectType-API.patch -------------------------------------------------------------------------------- /patches/server/0652-Add-GameEvent-tags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0652-Add-GameEvent-tags.patch -------------------------------------------------------------------------------- /patches/server/0654-Furnace-RecipesUsed-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0654-Furnace-RecipesUsed-API.patch -------------------------------------------------------------------------------- /patches/server/0656-Add-missing-block-data-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0656-Add-missing-block-data-API.patch -------------------------------------------------------------------------------- /patches/server/0659-Custom-Potion-Mixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0659-Custom-Potion-Mixes.patch -------------------------------------------------------------------------------- /patches/server/0664-More-Projectile-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0664-More-Projectile-API.patch -------------------------------------------------------------------------------- /patches/server/0668-Make-some-itemstacks-nonnull.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0668-Make-some-itemstacks-nonnull.patch -------------------------------------------------------------------------------- /patches/server/0670-Fix-saving-in-unloadWorld.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0670-Fix-saving-in-unloadWorld.patch -------------------------------------------------------------------------------- /patches/server/0671-Buffer-OOB-setBlock-calls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0671-Buffer-OOB-setBlock-calls.patch -------------------------------------------------------------------------------- /patches/server/0672-Add-TameableDeathMessageEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0672-Add-TameableDeathMessageEvent.patch -------------------------------------------------------------------------------- /patches/server/0680-Expand-PlayerItemDamageEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0680-Expand-PlayerItemDamageEvent.patch -------------------------------------------------------------------------------- /patches/server/0681-WorldCreator-keepSpawnLoaded.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0681-WorldCreator-keepSpawnLoaded.patch -------------------------------------------------------------------------------- /patches/server/0687-Add-PlayerStopUsingItemEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0687-Add-PlayerStopUsingItemEvent.patch -------------------------------------------------------------------------------- /patches/server/0688-Don-t-tick-markers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0688-Don-t-tick-markers.patch -------------------------------------------------------------------------------- /patches/server/0689-Expand-FallingBlock-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0689-Expand-FallingBlock-API.patch -------------------------------------------------------------------------------- /patches/server/0693-Sanitize-sent-BlockEntity-NBT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0693-Sanitize-sent-BlockEntity-NBT.patch -------------------------------------------------------------------------------- /patches/server/0698-Add-WardenAngerChangeEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0698-Add-WardenAngerChangeEvent.patch -------------------------------------------------------------------------------- /patches/server/0701-Nameable-Banner-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0701-Nameable-Banner-API.patch -------------------------------------------------------------------------------- /patches/server/0705-Add-Player-getFishHook.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0705-Add-Player-getFishHook.patch -------------------------------------------------------------------------------- /patches/server/0708-Fix-Bee-flower-NPE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0708-Fix-Bee-flower-NPE.patch -------------------------------------------------------------------------------- /patches/server/0709-More-Teleport-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0709-More-Teleport-API.patch -------------------------------------------------------------------------------- /patches/server/0710-Add-EntityPortalReadyEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0710-Add-EntityPortalReadyEvent.patch -------------------------------------------------------------------------------- /patches/server/0716-Collision-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0716-Collision-API.patch -------------------------------------------------------------------------------- /patches/server/0718-Block-Ticking-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0718-Block-Ticking-API.patch -------------------------------------------------------------------------------- /patches/server/0724-Missing-eating-regain-reason.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0724-Missing-eating-regain-reason.patch -------------------------------------------------------------------------------- /patches/server/0725-Missing-effect-cause.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0725-Missing-effect-cause.patch -------------------------------------------------------------------------------- /patches/server/0730-fix-Jigsaw-block-kicking-user.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0730-fix-Jigsaw-block-kicking-user.patch -------------------------------------------------------------------------------- /patches/server/0732-Add-getDrops-to-BlockState.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0732-Add-getDrops-to-BlockState.patch -------------------------------------------------------------------------------- /patches/server/0733-Fix-a-bunch-of-vanilla-bugs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0733-Fix-a-bunch-of-vanilla-bugs.patch -------------------------------------------------------------------------------- /patches/server/0735-Fix-custom-piglin-loved-items.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0735-Fix-custom-piglin-loved-items.patch -------------------------------------------------------------------------------- /patches/server/0736-EntityPickupItemEvent-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0736-EntityPickupItemEvent-fixes.patch -------------------------------------------------------------------------------- /patches/server/0739-Elder-Guardian-appearance-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0739-Elder-Guardian-appearance-API.patch -------------------------------------------------------------------------------- /patches/server/0740-Add-entity-knockback-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0740-Add-entity-knockback-API.patch -------------------------------------------------------------------------------- /patches/server/0741-Detect-headless-JREs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0741-Detect-headless-JREs.patch -------------------------------------------------------------------------------- /patches/server/0743-Add-EntityToggleSitEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0743-Add-EntityToggleSitEvent.patch -------------------------------------------------------------------------------- /patches/server/0744-Add-fire-tick-delay-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0744-Add-fire-tick-delay-option.patch -------------------------------------------------------------------------------- /patches/server/0745-Add-Moving-Piston-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0745-Add-Moving-Piston-API.patch -------------------------------------------------------------------------------- /patches/server/0746-Ignore-impossible-spawn-tick.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0746-Ignore-impossible-spawn-tick.patch -------------------------------------------------------------------------------- /patches/server/0751-Add-Player-Warden-Warning-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0751-Add-Player-Warden-Warning-API.patch -------------------------------------------------------------------------------- /patches/server/0756-ItemStack-damage-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0756-ItemStack-damage-API.patch -------------------------------------------------------------------------------- /patches/server/0757-Friction-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0757-Friction-API.patch -------------------------------------------------------------------------------- /patches/server/0760-Sync-offhand-slot-in-menus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0760-Sync-offhand-slot-in-menus.patch -------------------------------------------------------------------------------- /patches/server/0761-Player-Entity-Tracking-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0761-Player-Entity-Tracking-Events.patch -------------------------------------------------------------------------------- /patches/server/0762-Limit-pet-look-distance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0762-Limit-pet-look-distance.patch -------------------------------------------------------------------------------- /patches/server/0763-fix-Instruments.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0763-fix-Instruments.patch -------------------------------------------------------------------------------- /patches/server/0765-Add-BlockLockCheckEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0765-Add-BlockLockCheckEvent.patch -------------------------------------------------------------------------------- /patches/server/0766-Add-Sneaking-API-for-Entities.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0766-Add-Sneaking-API-for-Entities.patch -------------------------------------------------------------------------------- /patches/server/0767-Improve-logging-and-errors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0767-Improve-logging-and-errors.patch -------------------------------------------------------------------------------- /patches/server/0768-Improve-PortalEvents.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0768-Improve-PortalEvents.patch -------------------------------------------------------------------------------- /patches/server/0772-Flying-Fall-Damage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0772-Flying-Fall-Damage.patch -------------------------------------------------------------------------------- /patches/server/0777-Win-Screen-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0777-Win-Screen-API.patch -------------------------------------------------------------------------------- /patches/server/0780-Add-Entity-Body-Yaw-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0780-Add-Entity-Body-Yaw-API.patch -------------------------------------------------------------------------------- /patches/server/0782-Add-EntityFertilizeEggEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0782-Add-EntityFertilizeEggEvent.patch -------------------------------------------------------------------------------- /patches/server/0789-Add-Shearable-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0789-Add-Shearable-API.patch -------------------------------------------------------------------------------- /patches/server/0798-Add-Mob-Experience-reward-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0798-Add-Mob-Experience-reward-API.patch -------------------------------------------------------------------------------- /patches/server/0802-Expand-PlayerItemMendEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0802-Expand-PlayerItemMendEvent.patch -------------------------------------------------------------------------------- /patches/server/0804-Add-transient-modifier-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0804-Add-transient-modifier-API.patch -------------------------------------------------------------------------------- /patches/server/0805-Fix-block-place-logic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0805-Fix-block-place-logic.patch -------------------------------------------------------------------------------- /patches/server/0819-More-Sign-Block-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0819-More-Sign-Block-API.patch -------------------------------------------------------------------------------- /patches/server/0821-Fix-BanList-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0821-Fix-BanList-API.patch -------------------------------------------------------------------------------- /patches/server/0827-Add-whitelist-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0827-Add-whitelist-events.patch -------------------------------------------------------------------------------- /patches/server/0828-Implement-PlayerFailMoveEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0828-Implement-PlayerFailMoveEvent.patch -------------------------------------------------------------------------------- /patches/server/0837-Cache-map-ids-on-item-frames.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0837-Cache-map-ids-on-item-frames.patch -------------------------------------------------------------------------------- /patches/server/0840-Bandaid-fix-for-Effect.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0840-Bandaid-fix-for-Effect.patch -------------------------------------------------------------------------------- /patches/server/0841-SculkCatalyst-bloom-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0841-SculkCatalyst-bloom-API.patch -------------------------------------------------------------------------------- /patches/server/0848-Add-Listing-API-for-Player.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0848-Add-Listing-API-for-Player.patch -------------------------------------------------------------------------------- /patches/server/0851-Fix-NPE-on-Boat-getStatus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0851-Fix-NPE-on-Boat-getStatus.patch -------------------------------------------------------------------------------- /patches/server/0852-Expand-Pose-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0852-Expand-Pose-API.patch -------------------------------------------------------------------------------- /patches/server/0853-More-DragonBattle-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0853-More-DragonBattle-API.patch -------------------------------------------------------------------------------- /patches/server/0854-Add-PlayerPickItemEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0854-Add-PlayerPickItemEvent.patch -------------------------------------------------------------------------------- /patches/server/0855-Allow-trident-custom-damage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0855-Allow-trident-custom-damage.patch -------------------------------------------------------------------------------- /patches/server/0859-Fix-slot-desync.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0859-Fix-slot-desync.patch -------------------------------------------------------------------------------- /patches/server/0868-Fix-spigot-s-Forced-Stats.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0868-Fix-spigot-s-Forced-Stats.patch -------------------------------------------------------------------------------- /patches/server/0878-Add-player-idle-duration-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0878-Add-player-idle-duration-API.patch -------------------------------------------------------------------------------- /patches/server/0882-Optimize-VarInts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0882-Optimize-VarInts.patch -------------------------------------------------------------------------------- /patches/server/0886-Expand-LingeringPotion-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0886-Expand-LingeringPotion-API.patch -------------------------------------------------------------------------------- /patches/server/0894-Add-Structure-check-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0894-Add-Structure-check-API.patch -------------------------------------------------------------------------------- /patches/server/0898-add-more-scoreboard-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0898-add-more-scoreboard-API.patch -------------------------------------------------------------------------------- /patches/server/0899-Improve-Registry.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0899-Improve-Registry.patch -------------------------------------------------------------------------------- /patches/server/0901-Add-experience-points-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0901-Add-experience-points-API.patch -------------------------------------------------------------------------------- /patches/server/0902-Add-drops-to-shear-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0902-Add-drops-to-shear-events.patch -------------------------------------------------------------------------------- /patches/server/0903-Add-PlayerShieldDisableEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0903-Add-PlayerShieldDisableEvent.patch -------------------------------------------------------------------------------- /patches/server/0906-Fixup-NamespacedKey-handling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0906-Fixup-NamespacedKey-handling.patch -------------------------------------------------------------------------------- /patches/server/0910-Add-ShulkerDuplicateEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0910-Add-ShulkerDuplicateEvent.patch -------------------------------------------------------------------------------- /patches/server/0912-Add-Lifecycle-Event-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0912-Add-Lifecycle-Event-system.patch -------------------------------------------------------------------------------- /patches/server/0913-ItemStack-Tooltip-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0913-ItemStack-Tooltip-API.patch -------------------------------------------------------------------------------- /patches/server/0915-Add-FluidState-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0915-Add-FluidState-API.patch -------------------------------------------------------------------------------- /patches/server/0916-add-number-format-api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0916-add-number-format-api.patch -------------------------------------------------------------------------------- /patches/server/0917-improve-BanList-types.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0917-improve-BanList-types.patch -------------------------------------------------------------------------------- /patches/server/0918-Expanded-Hopper-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0918-Expanded-Hopper-API.patch -------------------------------------------------------------------------------- /patches/server/0920-Deprecate-ItemStack-setType.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0920-Deprecate-ItemStack-setType.patch -------------------------------------------------------------------------------- /patches/server/0921-Add-CartographyItemEvent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0921-Add-CartographyItemEvent.patch -------------------------------------------------------------------------------- /patches/server/0922-More-Raid-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0922-More-Raid-API.patch -------------------------------------------------------------------------------- /patches/server/0925-Fix-bees-aging-inside-hives.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0925-Fix-bees-aging-inside-hives.patch -------------------------------------------------------------------------------- /patches/server/0928-Fix-DamageSource-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0928-Fix-DamageSource-API.patch -------------------------------------------------------------------------------- /patches/server/0931-Improve-tag-parser-handling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0931-Improve-tag-parser-handling.patch -------------------------------------------------------------------------------- /patches/server/0932-Item-Mutation-Fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0932-Item-Mutation-Fixes.patch -------------------------------------------------------------------------------- /patches/server/0937-Deep-clone-nbt-tags-in-PDC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0937-Deep-clone-nbt-tags-in-PDC.patch -------------------------------------------------------------------------------- /patches/server/0941-Fix-ItemFlags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0941-Fix-ItemFlags.patch -------------------------------------------------------------------------------- /patches/server/0947-General-ItemMeta-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0947-General-ItemMeta-fixes.patch -------------------------------------------------------------------------------- /patches/server/0948-More-Chest-Block-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0948-More-Chest-Block-API.patch -------------------------------------------------------------------------------- /patches/server/0950-Brigadier-based-command-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0950-Brigadier-based-command-API.patch -------------------------------------------------------------------------------- /patches/server/0951-Fix-issues-with-Recipe-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0951-Fix-issues-with-Recipe-API.patch -------------------------------------------------------------------------------- /patches/server/0960-Adopt-MaterialRerouting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0960-Adopt-MaterialRerouting.patch -------------------------------------------------------------------------------- /patches/server/0961-Suspicious-Effect-Entry-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0961-Suspicious-Effect-Entry-API.patch -------------------------------------------------------------------------------- /patches/server/0967-Configurable-Sand-Duping.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0967-Configurable-Sand-Duping.patch -------------------------------------------------------------------------------- /patches/server/0971-Fix-NPE-for-Jukebox-setRecord.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0971-Fix-NPE-for-Jukebox-setRecord.patch -------------------------------------------------------------------------------- /patches/server/0972-fix-horse-inventories.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0972-fix-horse-inventories.patch -------------------------------------------------------------------------------- /patches/server/0974-Add-ItemType-getItemRarity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0974-Add-ItemType-getItemRarity.patch -------------------------------------------------------------------------------- /patches/server/0975-Add-plugin-info-at-startup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0975-Add-plugin-info-at-startup.patch -------------------------------------------------------------------------------- /patches/server/0982-Add-even-more-Enchantment-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0982-Add-even-more-Enchantment-API.patch -------------------------------------------------------------------------------- /patches/server/0983-Leashable-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0983-Leashable-API.patch -------------------------------------------------------------------------------- /patches/server/0984-Fix-CraftBukkit-drag-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0984-Fix-CraftBukkit-drag-system.patch -------------------------------------------------------------------------------- /patches/server/0991-Check-dead-flag-in-isAlive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0991-Check-dead-flag-in-isAlive.patch -------------------------------------------------------------------------------- /patches/server/0992-Add-FeatureFlag-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0992-Add-FeatureFlag-API.patch -------------------------------------------------------------------------------- /patches/server/0993-Item-serialization-as-json.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0993-Item-serialization-as-json.patch -------------------------------------------------------------------------------- /patches/server/0999-Improve-entity-effect-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/0999-Improve-entity-effect-API.patch -------------------------------------------------------------------------------- /patches/server/1000-Add-recipeBrewTime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1000-Add-recipeBrewTime.patch -------------------------------------------------------------------------------- /patches/server/1003-Void-damage-configuration-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1003-Void-damage-configuration-API.patch -------------------------------------------------------------------------------- /patches/server/1004-Add-Offline-PDC-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1004-Add-Offline-PDC-API.patch -------------------------------------------------------------------------------- /patches/server/1009-API-for-checking-sent-chunks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1009-API-for-checking-sent-chunks.patch -------------------------------------------------------------------------------- /patches/server/1012-Bundle-spark.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1012-Bundle-spark.patch -------------------------------------------------------------------------------- /patches/server/1017-Correct-update-cursor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1017-Correct-update-cursor.patch -------------------------------------------------------------------------------- /patches/server/1026-Expanded-Art-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1026-Expanded-Art-API.patch -------------------------------------------------------------------------------- /patches/server/1028-Registry-Modification-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1028-Registry-Modification-API.patch -------------------------------------------------------------------------------- /patches/server/1030-Tag-Lifecycle-Events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1030-Tag-Lifecycle-Events.patch -------------------------------------------------------------------------------- /patches/server/1032-DataComponent-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1032-DataComponent-API.patch -------------------------------------------------------------------------------- /patches/server/1036-Properly-resend-entities.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1036-Properly-resend-entities.patch -------------------------------------------------------------------------------- /patches/server/1043-Entity-Activation-Range-2.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1043-Entity-Activation-Range-2.0.patch -------------------------------------------------------------------------------- /patches/server/1044-Anti-Xray.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1044-Anti-Xray.patch -------------------------------------------------------------------------------- /patches/server/1048-Optimize-Hoppers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1048-Optimize-Hoppers.patch -------------------------------------------------------------------------------- /patches/server/1049-Optimize-Voxel-Shape-Merging.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1049-Optimize-Voxel-Shape-Merging.patch -------------------------------------------------------------------------------- /patches/server/1051-Remove-streams-from-hot-code.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1051-Remove-streams-from-hot-code.patch -------------------------------------------------------------------------------- /patches/server/1058-Rewrite-dataconverter-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1058-Rewrite-dataconverter-system.patch -------------------------------------------------------------------------------- /patches/server/1059-Moonrise-optimisation-patches.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1059-Moonrise-optimisation-patches.patch -------------------------------------------------------------------------------- /patches/server/1061-Improved-Watchdog-Support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1061-Improved-Watchdog-Support.patch -------------------------------------------------------------------------------- /patches/server/1067-Optimise-general-POI-access.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1067-Optimise-general-POI-access.patch -------------------------------------------------------------------------------- /patches/server/1069-Lag-compensation-ticks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1069-Lag-compensation-ticks.patch -------------------------------------------------------------------------------- /patches/server/1076-Implement-chunk-view-API.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/patches/server/1076-Implement-chunk-view-API.patch -------------------------------------------------------------------------------- /scripts/apatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/scripts/apatch.sh -------------------------------------------------------------------------------- /scripts/checkoutpr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/scripts/checkoutpr.sh -------------------------------------------------------------------------------- /scripts/get_pr_source_diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/scripts/get_pr_source_diff.sh -------------------------------------------------------------------------------- /scripts/upstreamCommit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/scripts/upstreamCommit.sh -------------------------------------------------------------------------------- /scripts/upstreamMerge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/scripts/upstreamMerge.sh -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /test-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/test-plugin/build.gradle.kts -------------------------------------------------------------------------------- /test-plugin/src/main/resources/paper-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/Paper-archive/HEAD/test-plugin/src/main/resources/paper-plugin.yml --------------------------------------------------------------------------------