Paper/patches/api
Spottedleaf 8c5b837e05 Rework async chunk api implementation
Firstly, the old methods all routed to the CompletableFuture method.
However, the CF method could not guarantee that if the caller
was off-main that the future would be "completed" on-main. Since
the callback methods used the CF one, this meant that the callback
methods did not guarantee that the callbacks were to be called on
the main thread.

Now, all methods route to getChunkAtAsync(x, z, gen, urgent, cb)
so that the methods with the callback are guaranteed to invoke
the callback on the main thread. The CF behavior remains unchanged;
it may still appear to complete on main if invoked off-main.

Secondly, remove the scheduleOnMain invocation in the async
chunk completion. This unnecessarily delays the callback
by 1 tick.

Thirdly, add getChunksAtAsync(minX, minZ, maxX, maxZ, ...) which
will load chunks within an area. This method is provided as a helper
as keeping all chunks loaded within an area can be complicated to
implement for plugins (due to the lacking ticket API), and is
already implemented internally anyways.

Fourthly, remove the ticket addition that occured with getChunkAt
and getChunkAtAsync. The ticket addition may delay the unloading
of the chunk unnecessarily. It also fixes a very rare timing bug
where the future/callback would be completed after the chunk
unloads.
2024-11-18 23:00:59 -08:00
..
0001-Convert-project-to-Gradle.patch Upstream update 2024-10-24 19:29:35 +02:00
0002-Build-system-changes.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0003-Test-changes.patch Configure mockito agent (#11560) 2024-11-09 22:49:07 +01:00
0004-Code-Generation.patch Fix NPE with enchantable (#11557) 2024-11-09 23:26:01 +01:00
0005-Add-FastUtil-to-Bukkit.patch Configure mockito agent (#11560) 2024-11-09 22:49:07 +01:00
0006-Adventure.patch Configure mockito agent (#11560) 2024-11-09 22:49:07 +01:00
0007-Paper-Utils.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0008-Use-ASM-for-event-executors.patch Configure mockito agent (#11560) 2024-11-09 22:49:07 +01:00
0009-Paper-Plugins.patch Configure mockito agent (#11560) 2024-11-09 22:49:07 +01:00
0010-Add-Position.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0011-Timings-v2.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0012-Add-command-line-option-to-load-extra-plugin-jars-no.patch Remove timings impl 2024-10-27 18:39:30 +01:00
0013-Player-affects-spawning-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0014-Add-getTPS-method.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0015-Expose-server-build-information.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0016-Entity-Origin-API.patch Begin update to 1.20.5 2024-04-23 10:02:08 -07:00
0017-Add-view-distance-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0018-Add-BeaconEffectEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0019-Expose-server-CommandMap.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0020-Graduate-bungeecord-chat-API-from-spigot-subclasses.patch Upstream update 2024-10-24 19:29:35 +02:00
0021-Add-exception-reporting-event.patch Remove timings impl 2024-10-27 18:39:30 +01:00
0022-Add-BaseComponent-sendMessage-methods-to-CommandSend.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0023-Fix-ServerListPingEvent-flagging-as-Async.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0024-Player-Tab-List-and-Title-APIs.patch Upstream update 2024-10-24 19:29:35 +02:00
0025-Add-methods-for-working-with-arrows-stuck-in-living-.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11405) 2024-09-15 21:39:53 +02:00
0026-Complete-resource-pack-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0027-Add-a-call-helper-to-Event.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0028-Add-sender-name-to-commands.yml-replacement.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0029-Add-command-to-reload-permissions.yml-and-require-co.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0030-Custom-replacement-for-eaten-items.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0031-Entity-AddTo-RemoveFrom-World-Events.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0032-EntityPathfindEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0033-Reduce-thread-synchronization-in-MetadataStoreBase.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0034-Add-MetadataStoreBase.removeAll-Plugin.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0035-Add-PlayerUseUnknownEntityEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0036-Add-handshake-event-to-allow-plugins-to-handle-clien.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0037-Arrow-pickup-rule-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0038-EntityRegainHealthEvent-isFastRegen-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0039-LootTable-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0040-Add-EntityZapEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0041-Misc-Utils.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 16:02:52 -07:00
0042-Allow-Reloading-of-Command-Aliases.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0043-Add-source-to-PlayerExpChangeEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0044-Add-ProjectileCollideEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0045-Add-String-based-Action-Bar-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0046-Add-API-methods-to-control-if-armour-stands-can-move.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0047-IllegalPacketEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0048-Fireworks-API-s.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0049-PlayerTeleportEndGatewayEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0050-Provide-E-TE-Chunk-count-stat-methods.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0051-ExperienceOrbs-API-for-Reason-Source-Triggering-play.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0052-Add-configuration-option-to-prevent-player-names-fro.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0053-Fix-upstream-javadocs.patch Updated Upstream (Bukkit/CraftBukkit) (#11626) 2024-11-17 16:52:44 +01:00
0054-Item-canEntityPickup.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0055-PlayerAttemptPickupItemEvent.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 16:02:52 -07:00
0056-Add-UnknownCommandEvent.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 16:02:52 -07:00
0057-Basic-PlayerProfile-API.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0058-PlayerPickupItemEvent-setFlyAtPlayer.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0059-Shoulder-Entities-Release-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0060-Entity-fromMobSpawner.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0061-Profile-Lookup-Events.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0062-Improve-the-Saddle-API-for-Horses.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 16:02:52 -07:00
0063-Add-getI18NDisplayName-API.patch Compiler issues v2 2024-10-25 14:25:28 +02:00
0064-ensureServerConversions-API.patch Compiler issues v2 2024-10-25 14:25:28 +02:00
0065-LivingEntity-setKiller.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0066-ProfileWhitelistVerifyEvent.patch Use components properly in ProfileWhitelistVerifyEvent (#11456) 2024-10-02 14:32:05 +02:00
0067-Allow-plugins-to-use-SLF4J-for-logging.patch Configure mockito agent (#11560) 2024-11-09 22:49:07 +01:00
0068-Handle-plugin-prefixes-in-implementation-logging-con.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0069-Add-PlayerJumpEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0070-Add-workaround-for-plugins-modifying-the-parent-of-t.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0071-Add-PlayerArmorChangeEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0072-API-to-get-a-BlockState-without-a-snapshot.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0073-AsyncTabCompleteEvent.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0074-Expose-client-protocol-version-and-virtual-host.patch Upstream update 2024-10-24 19:29:35 +02:00
0075-Display-warning-on-deprecated-recipe-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11197) 2024-08-09 22:05:50 +02:00
0076-PlayerPickupExperienceEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0077-ExperienceOrb-merging-stacking-API.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0078-Ability-to-apply-mending-to-XP-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0079-PreCreatureSpawnEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0080-PlayerNaturallySpawnCreaturesEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0081-Add-setPlayerProfile-API-for-Skulls.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0082-Add-PlayerAdvancementCriterionGrantEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0083-Fill-Profile-Property-Events.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0084-Add-ArmorStand-Item-Meta.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0085-Optimize-Hoppers.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0086-Tameable-getOwnerUniqueId-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0087-Add-more-fields-to-AsyncPreLoginEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0088-Add-extended-PaperServerListPingEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0089-Player.setPlayerProfile-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0090-getPlayerUniqueId-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11024) 2024-07-06 21:19:14 +02:00
0091-Add-legacy-ping-support-to-PaperServerListPingEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0092-Add-openSign-method-to-HumanEntity.patch Upstream update 2024-10-24 19:29:35 +02:00
0093-Add-Ban-Methods-to-Player-Objects.patch Upstream update 2024-10-24 19:29:35 +02:00
0094-EndermanEscapeEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0095-Enderman.teleportRandomly.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0096-Additional-world.getNearbyEntities-API-s.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0097-Location.isChunkLoaded-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0098-Expand-World.spawnParticle-API-and-add-Builder.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0099-EndermanAttackPlayerEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0100-WitchConsumePotionEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0101-WitchThrowPotionEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0102-Location.toBlockLocation-toCenterLocation.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0103-PotionEffect-clone-methods.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0104-WitchReadyPotionEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0105-ItemStack-getMaxItemUseDuration.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0106-Add-EntityTeleportEndGatewayEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0107-Make-shield-blocking-delay-configurable.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11405) 2024-09-15 21:39:53 +02:00
0108-EntityShootBowEvent-consumeArrow-and-getArrowItem-AP.patch Swap some nullable annotations (#10960) 2024-06-24 00:42:44 +02:00
0109-Add-getNearbyXXX-methods-to-Location.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0110-PlayerReadyArrowEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0111-Add-entity-knockback-events.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0112-Expand-Explosions-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0113-ItemStack-API-additions-for-quantity-flags-lore.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0114-LivingEntity-Active-Item-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0115-RangedEntity-API.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0116-Add-World.getEntity-UUID-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0117-InventoryCloseEvent-Reason-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0118-Allow-setting-the-vex-s-summoner.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0119-Entity-getChunk-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0120-EnderDragon-Events.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0121-PlayerElytraBoostEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0122-PlayerLaunchProjectileEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0123-Allow-disabling-armour-stand-ticking.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0124-SkeletonHorse-Additions.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0125-Expand-Location-Manipulation-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0126-Expand-ArmorStand-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 16:02:52 -07:00
0127-AnvilDamageEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0128-Add-TNTPrimeEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0129-Provide-Chunk-Coordinates-as-a-Long-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0130-Ability-to-get-Tile-Entities-from-a-chunk-without-sn.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0131-Don-t-use-snapshots-for-Timings-Tile-Entity-reports.patch Deprecate more Timings things for removal (#11126) 2024-07-20 19:40:41 -07:00
0132-Allow-Blocks-to-be-accessed-via-a-long-key.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0133-Slime-Pathfinder-Events.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0134-Add-PhantomPreSpawnEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0135-Add-More-Creeper-API.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0136-Inventory-removeItemAnySlot.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0137-isChunkGenerated-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0138-Add-source-block-constructor-and-getChangedBlockData.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0139-Async-Chunks-API.patch Rework async chunk api implementation 2024-11-18 23:00:59 -08:00
0140-Add-ray-tracing-methods-to-LivingEntity.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0141-Expose-attack-cooldown-methods-for-Player.patch Upstream update 2024-10-24 19:29:35 +02:00
0142-Improve-death-events.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0143-Mob-Pathfinding-API.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0144-Performance-Concurrency-Improvements-to-Permissions.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0145-Implement-furnace-cook-speed-multiplier-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0146-Material-API-additions.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0147-Add-Material-Tags.patch Update material tags and entity effect 2024-10-27 12:20:30 +01:00
0148-PreSpawnerSpawnEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0149-Add-LivingEntity-getTargetEntity.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0150-Add-sun-related-API.patch Rework async chunk api implementation 2024-11-18 23:00:59 -08:00
0151-Turtle-API.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0152-Add-spectator-target-events.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0153-Add-more-Witch-API.patch Swap some nullable annotations (#10960) 2024-06-24 00:42:44 +02:00
0154-Make-the-default-permission-message-configurable.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0155-Support-cancellation-supression-of-EntityDismount-Ve.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0156-Add-more-Zombie-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0157-Change-the-reserved-channel-check-to-be-sensible.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0158-Add-PlayerConnectionCloseEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0159-Add-APIs-to-replace-OfflinePlayer-getLastPlayed.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0160-Add-ItemStack-Recipe-API-helper-methods.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11197) 2024-08-09 22:05:50 +02:00
0161-BlockDestroyEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0162-Add-WhitelistToggleEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0163-Add-GS4-Query-event.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0164-Add-PlayerPostRespawnEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0165-Fixes-and-additions-to-the-spawn-reason-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11102) 2024-07-18 10:13:20 +02:00
0166-Fix-Spigot-annotation-mistakes.patch Rework async chunk api implementation 2024-11-18 23:00:59 -08:00
0167-Server-Tick-Events.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0168-PlayerDeathEvent-getItemsToKeep.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0169-Add-Heightmap-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0170-Mob-Spawner-API-Enhancements.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11024) 2024-07-06 21:19:14 +02:00
0171-Add-BlockSoundGroup-interface.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0172-Amend-PlayerInteractAtEntityEvent-javadoc-for-ArmorS.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0173-Set-true-custom-payload-channel-size-limit.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0174-Expose-the-internal-current-tick.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0175-Improve-Block-breakNaturally-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0176-PlayerDeathEvent-shouldDropExperience.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0177-Add-ThrownEggHatchEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0178-Entity-Jump-API.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0179-add-hand-to-BlockMultiPlaceEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0180-Add-tick-times-API.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0181-Expose-MinecraftServer-isRunning.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0182-Add-Raw-Byte-ItemStack-Serialization.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0183-Add-Player-Client-Options-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0184-Add-PlayerAttackEntityCooldownResetEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0185-Add-item-slot-convenience-methods.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11197) 2024-08-09 22:05:50 +02:00
0186-Villager-Restocks-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0187-Add-Mob-Goal-API.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0188-Add-villager-reputation-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11501) 2024-10-21 00:06:54 +02:00
0189-Spawn-Reason-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0190-Potential-bed-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0191-Inventory-getHolder-method-without-block-snapshot.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0192-Add-and-implement-PlayerRecipeBookClickEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0193-Support-components-in-ItemMeta.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0194-added-2-new-TargetReasons-for-1.16-mob-behavior.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0195-Add-entity-liquid-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0196-Add-PrepareResultEvent-PrepareGrindstoneEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0197-Add-BellRingEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0198-Brand-support.patch Upstream update 2024-10-24 19:29:35 +02:00
0199-Add-moon-phase-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 16:02:52 -07:00
0200-Add-playPickupItemAnimation-to-LivingEntity.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11405) 2024-09-15 21:39:53 +02:00
0201-Add-more-Evoker-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0202-Add-methods-to-get-translation-keys.patch Fix NPE with enchantable (#11557) 2024-11-09 23:26:01 +01:00
0203-Create-HoverEvent-from-ItemStack-Entity.patch Compiler issues v2 2024-10-25 14:25:28 +02:00
0204-Add-additional-open-container-api-to-HumanEntity.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0205-Expose-the-Entity-Counter-to-allow-plugins-to-use-va.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0206-Entity-isTicking.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0207-Villager-resetOffers.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0208-Player-elytra-boost-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0209-Add-getOfflinePlayerIfCached-String.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11024) 2024-07-06 21:19:14 +02:00
0210-Add-ignore-discounts-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0211-Item-no-age-no-player-pickup.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0212-Beacon-API-custom-effect-ranges.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0213-Add-API-for-quit-reason.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0214-Add-Destroy-Speed-API.patch De-deprecate BlockData#getDestroySpeed 2024-06-16 12:44:22 +02:00
0215-Add-LivingEntity-clearActiveItem.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11405) 2024-09-15 21:39:53 +02:00
0216-Add-PlayerItemCooldownEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0217-More-lightning-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0218-Add-PlayerShearBlockEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0219-Player-Chunk-Load-Unload-Events.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0220-Expose-LivingEntity-hurt-direction.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0221-Add-OBSTRUCTED-reason-to-BedEnterResult.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0222-Added-PlayerTradeEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0223-Add-TargetHitEvent-API.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0224-Additional-Block-Material-API-s.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0225-Add-API-to-get-Material-from-Boats-and-Minecarts.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11561) 2024-11-04 18:42:38 +01:00
0226-Add-PlayerFlowerPotManipulateEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0227-Zombie-API-breaking-doors.patch Compiler issues v4 2024-10-25 17:20:41 +02:00
0228-Add-EntityLoadCrossbowEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0229-Added-WorldGameRuleChangeEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0230-Added-ServerResourcesReloadedEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0231-Add-BlockFailedDispenseEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0232-Added-PlayerLecternPageChangeEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0233-Added-PlayerLoomPatternSelectEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0234-Add-API-to-get-exact-interaction-point-in-PlayerInte.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0235-Add-sendOpLevel-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0236-Add-RegistryAccess-for-managing-registries.patch Fix NPE with enchantable (#11557) 2024-11-09 23:26:01 +01:00
0237-Add-StructuresLocateEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0238-Add-BlockPreDispenseEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0239-Added-PlayerChangeBeaconEffectEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0240-Added-PlayerStonecutterRecipeSelectEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0241-Add-dropLeash-variable-to-EntityUnleashEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0242-add-DragonEggFormEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0243-EntityMoveEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0244-Allow-adding-items-to-BlockDropItemEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0245-Add-getMainThreadExecutor-to-BukkitScheduler.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0246-living-entity-allow-attribute-registration.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0247-Add-missing-effects.patch [ci skip] Fix Effect javadocs (#11182) 2024-08-12 00:35:45 +02:00
0248-Expose-Tracked-Players.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0249-Add-worldborder-events.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0250-added-PlayerNameEntityEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0251-Add-recipe-to-cook-events.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0252-Add-Block-isValidTool.patch Deprecate for removal Block#isValidTool (#11439) 2024-09-27 18:28:04 +02:00
0253-Expand-world-key-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0254-Improve-Item-Rarity-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0255-Expose-protocol-version.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0256-add-isDeeplySleeping-to-HumanEntity.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0257-add-consumeFuel-to-FurnaceBurnEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0258-add-get-set-drop-chance-to-EntityEquipment.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0259-Added-PlayerDeepSleepEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0260-More-World-API.patch Rework async chunk api implementation 2024-11-18 23:00:59 -08:00
0261-Added-PlayerBedFailEnterEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0262-Introduce-beacon-activation-deactivation-events.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0263-PlayerMoveEvent-Improvements.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0264-add-RespawnFlags-to-PlayerRespawnEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0265-Add-more-WanderingTrader-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0266-Add-EntityBlockStorage-clearEntities.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0267-Add-Adventure-message-to-PlayerAdvancementDoneEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0268-Inventory-close.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0269-Add-a-should-burn-in-sunlight-API-for-Phantoms-and-S.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0270-Add-basic-Datapack-API.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0271-additions-to-PlayerGameModeChangeEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0272-ItemStack-repair-check-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0273-More-Enchantment-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11501) 2024-10-21 00:06:54 +02:00
0274-Add-Mob-lookAt-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0275-ItemStack-editMeta.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0276-Add-EntityInsideBlockEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0277-Improve-item-default-attribute-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0278-Add-cause-to-Weather-ThunderChangeEvents.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0279-More-Lidded-Block-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0280-Add-PlayerKickEvent-causes.patch Upstream update 2024-10-24 19:29:35 +02:00
0281-Add-PufferFishStateChangeEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0282-Add-BellRevealRaiderEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0283-Add-ElderGuardianAppearanceEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0284-Add-more-line-of-sight-methods.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0285-Add-WaterBottleSplashEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0286-Add-more-LimitedRegion-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0287-Missing-Entity-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0288-Adds-PlayerArmSwingEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0289-Add-PlayerSignCommandPreprocessEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0290-fix-empty-array-elements-in-command-arguments.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0291-Stinger-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0292-Rewrite-LogEvents-to-contain-the-source-jars-in-stac.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0293-Add-PlayerSetSpawnEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0294-Added-EntityDamageItemEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0295-Make-EntityUnleashEvent-cancellable.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0296-Change-EnderEye-target-without-changing-other-things.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0297-Add-BlockBreakBlockEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0298-Add-helpers-for-left-right-click-to-Action.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0299-Option-to-prevent-data-components-copy-in-smithing-r.patch Updated Upstream (Bukkit/CraftBukkit) (#11501) 2024-10-21 00:06:54 +02:00
0300-More-CommandBlock-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 16:02:52 -07:00
0301-Add-missing-team-sidebar-display-slots.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0302-add-back-EntityPortalExitEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0303-Add-methods-to-find-targets-for-lightning-strikes.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0304-Get-entity-default-attributes.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0305-Left-handed-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0306-Add-critical-damage-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0307-Add-more-advancement-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 16:02:52 -07:00
0308-Fix-issues-with-mob-conversion.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0309-Add-hasCollision-methods-to-various-places.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0310-Goat-ram-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0311-Add-API-for-resetting-a-single-score.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0312-Add-Raw-Byte-Entity-Serialization.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0313-Add-PlayerItemFrameChangeEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0314-Add-more-Campfire-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0315-Extend-VehicleCollisionEvent-move-HandlerList-up.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0316-Improve-scoreboard-entries.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0317-Entity-powdered-snow-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0318-Add-API-for-item-entity-health.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0319-Expose-isFuel-and-canSmelt-methods-to-FurnaceInvento.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0320-Bucketable-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 16:02:52 -07:00
0321-System-prop-for-default-config-comment-parsing.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0322-Expose-vanilla-BiomeProvider-from-WorldInfo.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0323-Multiple-Entries-with-Scoreboards.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0324-Warn-on-strange-EventHandler-return-types.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0325-Multi-Block-Change-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0326-Fix-NotePlayEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0327-Freeze-Tick-Lock-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0328-Dolphin-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0329-More-PotionEffectType-API.patch Fix NPE with enchantable (#11557) 2024-11-09 23:26:01 +01:00
0330-API-for-creating-command-sender-which-forwards-feedb.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0331-Implement-regenerateChunk.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0332-Add-GameEvent-tags.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0333-Furnace-RecipesUsed-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0334-Configurable-sculk-sensor-listener-range.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0335-Add-missing-block-data-API.patch Add Decorated Pot Cracked API (#11365) 2024-09-08 22:12:36 +02:00
0336-Custom-Potion-Mixes.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0337-Expose-furnace-minecart-push-values.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0338-More-Projectile-API.patch Update launchProjectile API (#11300) 2024-09-21 21:19:02 +02:00
0339-Add-getComputedBiome-API.patch Deprecate for removal Block#isValidTool (#11439) 2024-09-27 18:28:04 +02:00
0340-Add-enchantWithLevels-API.patch Compiler issues v2 2024-10-25 14:25:28 +02:00
0341-Add-TameableDeathMessageEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0342-Allow-to-change-the-podium-of-the-EnderDragon.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0343-Fix-incorrect-new-blockstate-in-EntityBreakDoorEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0344-Add-pre-unbreaking-amount-to-PlayerItemDamageEvent.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0345-WorldCreator-keepSpawnLoaded.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0346-Add-EntityDyeEvent-and-CollarColorable-interface.patch Updated Upstream (Bukkit/CraftBukkit) (#11501) 2024-10-21 00:06:54 +02:00
0347-Add-PlayerStopUsingItemEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0348-Expand-FallingBlock-API.patch Rework async chunk api implementation 2024-11-18 23:00:59 -08:00
0349-Add-method-isTickingWorlds-to-Bukkit.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0350-Add-WardenAngerChangeEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0351-Nameable-Banner-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0352-Add-Player-getFishHook.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0353-More-Teleport-API.patch Only expose velocity relative tp flags to API (#11532) 2024-10-31 17:25:52 +01:00
0354-Add-EntityPortalReadyEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0355-Custom-Chat-Completion-Suggestions-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0356-Collision-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0357-Block-Ticking-API.patch Deprecate for removal Block#isValidTool (#11439) 2024-09-27 18:28:04 +02:00
0358-Add-NamespacedKey-biome-methods.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0359-Also-load-resources-from-LibraryLoader.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0360-Added-byte-array-serialization-deserialization-for-P.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
0361-Expose-codepoint-limit-in-YamlConfigOptions-and-incr.patch Updated Upstream (Bukkit/CraftBukkit) (#11501) 2024-10-21 00:06:54 +02:00
0362-Add-getDrops-to-BlockState.patch Update launchProjectile API (#11300) 2024-09-21 21:19:02 +02:00
0363-Add-PlayerInventorySlotChangeEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0364-Elder-Guardian-appearance-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0365-Add-EquipmentSlot-convenience-methods.patch Update launchProjectile API (#11300) 2024-09-21 21:19:02 +02:00
0366-Add-LivingEntity-swingHand-EquipmentSlot-convenience.patch Update launchProjectile API (#11300) 2024-09-21 21:19:02 +02:00
0367-Add-entity-knockback-API.patch Update launchProjectile API (#11300) 2024-09-21 21:19:02 +02:00
0368-Added-EntityToggleSitEvent.patch Begin switching to JSpecify annotations (#11448) 2024-09-29 12:52:13 -07:00
0369-Add-Moving-Piston-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 16:02:52 -07:00
0370-Add-PrePlayerAttackEntityEvent.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0371-Add-Player-Warden-Warning-API.patch Upstream update 2024-10-24 19:29:35 +02:00
0372-More-vanilla-friendly-methods-to-update-trades.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0373-Add-paper-dumplisteners-command.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0374-ItemStack-damage-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
0375-Add-Tick-TemporalUnit.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 16:02:52 -07:00
0376-Friction-API.patch Add Friction API to minecarts 2024-10-30 17:31:33 +01:00
0377-Player-Entity-Tracking-Events.patch Finish converting all events to jspecify annotations 2024-09-29 19:13:41 -07:00
0378-fix-Instruments.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#11561) 2024-11-04 18:42:38 +01:00
0379-Add-BlockLockCheckEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0380-Add-Sneaking-API-for-Entities.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0381-Improve-PortalEvents.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0382-Flying-Fall-Damage-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0383-Replace-ItemFlag.HIDE_POTION_EFFECTS.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0384-Win-Screen-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0385-Add-Entity-Body-Yaw-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0386-Fix-HandlerList-for-InventoryBlockStartEvent-subclas.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0387-Add-EntityFertilizeEggEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0388-Add-CompostItemEvent-and-EntityCompostItemEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0389-Add-Shearable-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0390-Fix-SpawnEggMeta-get-setSpawnedType.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0391-Add-Mob-Experience-reward-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0392-Expand-PlayerItemMendEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0393-Add-method-to-remove-all-active-potion-effects.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0394-Folia-scheduler-and-owned-region-API.patch Updated Upstream (Bukkit/CraftBukkit) 2024-11-09 17:01:35 +01:00
0395-Add-event-for-player-editing-sign.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0396-More-Sign-Block-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0397-Fix-BanList-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0398-Add-whitelist-events.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0399-API-for-updating-recipes-on-clients.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0400-Add-PlayerFailMoveEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0401-Fix-custom-statistic-criteria-creation.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0402-SculkCatalyst-bloom-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0403-API-for-an-entity-s-scoreboard-name.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0404-Deprecate-and-replace-methods-with-old-StructureType.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0405-Add-Listing-API-for-Player.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0406-Expose-clicked-BlockFace-during-BlockDamageEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0407-Fix-NPE-on-Boat-getStatus.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0408-Expand-Pose-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0409-MerchantRecipe-add-copy-constructor.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0410-More-DragonBattle-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0411-Add-PlayerPickItemEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0412-Allow-trident-custom-damage.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0413-Expose-hand-during-BlockCanBuildEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0414-Limit-setBurnTime-to-valid-short-values.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0415-Add-OfflinePlayer-isConnected.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0416-Add-titleOverride-to-InventoryOpenEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0417-Allow-proper-checking-of-empty-item-stacks.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0418-Fix-PlayerSwapHandItemsEvent-throwing-exception-when.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0419-Add-player-idle-duration-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0420-Add-API-to-get-the-collision-shape-of-a-block-before.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0421-Add-predicate-for-blocks-when-raytracing.patch Rework async chunk api implementation 2024-11-18 23:00:59 -08:00
0422-Add-hand-to-fish-event-for-all-player-interactions.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0423-Attribute-Modifier-API-improvements.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0424-Expand-LingeringPotion-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0425-Remove-unnecessary-durability-check-in-ItemStack-isS.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0426-Add-Structure-check-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0427-Experimental-annotations-change.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0428-Add-more-scoreboard-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0429-Improve-Registry.patch Fix NPE with enchantable (#11557) 2024-11-09 23:26:01 +01:00
0430-Add-experience-points-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0431-Add-missing-InventoryType.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0432-Add-drops-to-shear-events.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0433-Add-HiddenPotionEffect-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0434-Add-PlayerShieldDisableEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0435-Return-null-for-empty-String-in-NamespacedKey.fromSt.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0436-Add-BlockStateMeta-clearBlockState.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0437-Expose-LootTable-of-DecoratedPot.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0438-Add-ShulkerDuplicateEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0439-Add-api-for-spawn-egg-texture-colors.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0440-Add-Lifecycle-Event-system.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0441-ItemStack-Tooltip-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0442-Add-getChunkSnapshot-includeLightData-parameter.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0443-Add-FluidState-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0444-add-number-format-api.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0445-improve-BanList-types.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0446-Suspicious-Effect-Entry-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0447-Fix-DamageSource-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0448-Expanded-Hopper-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0449-Clone-mutables-to-prevent-unexpected-issues.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0450-Add-BlockBreakProgressUpdateEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0451-Deprecate-ItemStack-setType.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0452-Item-Mutation-Fixes.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0453-API-for-checking-sent-chunks.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0454-Add-CartographyItemEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0455-More-Raid-API.patch Rework async chunk api implementation 2024-11-18 23:00:59 -08:00
0456-Fix-SpawnerEntry-Equipment-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0457-Fix-ItemFlags.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0458-Allow-modifying-library-loader-jars-bytecode.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0459-Add-hook-to-remap-library-jars.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0460-Add-GameMode-isInvulnerable.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0461-Expose-hasColor-to-leather-armor.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0462-Added-API-to-get-player-ha-proxy-address.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0463-More-Chest-Block-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0464-Brigadier-based-command-API.patch Configure mockito agent (#11560) 2024-11-09 22:49:07 +01:00
0465-Fix-issues-with-recipe-API.patch bunch more general fixes 2024-10-31 20:35:06 -07:00
0466-Fix-equipment-slot-and-group-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0467-Allow-Bukkit-plugin-to-use-Paper-PluginLoader-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0468-General-ItemMeta-fixes.patch bunch more general fixes 2024-10-31 20:35:06 -07:00
0469-Add-missing-fishing-event-state.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0470-Deprecate-InvAction-HOTBAR_MOVE_AND_READD.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0471-Registry-Modification-API.patch Fix NPE with enchantable (#11557) 2024-11-09 23:26:01 +01:00
0472-Introduce-registry-entry-and-builders.patch Fix NPE with enchantable (#11557) 2024-11-09 23:26:01 +01:00
0473-Proxy-ItemStack-to-CraftItemStack.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0474-Make-a-PDC-view-accessible-directly-from-ItemStack.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0475-Fix-HelpCommand-searching.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0476-add-Plugin-getDataPath.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0477-Fix-PickupStatus-getting-reset.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0478-Add-an-API-for-CanPlaceOn-and-CanDestroy-NBT-values.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0479-Improve-StandardMessenger-exception-messages.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0480-Add-even-more-Enchantment-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0481-Leashable-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0482-Add-enchantment-seed-update-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0483-Deprecate-for-removal-all-OldEnum-related-methods.patch bunch more general fixes 2024-10-31 20:35:06 -07:00
0484-Add-FeatureFlag-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0485-Tag-Lifecycle-Events.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0486-Item-serialization-as-json.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0487-create-TileStateInventoryHolder.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0488-Add-enchantWithLevels-with-enchantment-registry-set.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0489-Improve-entity-effect-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0490-Add-recipeBrewTime.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0491-Add-PlayerInsertLecternBookEvent.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0492-Void-damage-configuration-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0493-Add-Offline-PDC-API.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0494-Add-AnvilView-bypassEnchantmentLevelRestriction.patch Updated Upstream (Bukkit/CraftBukkit) (#11543) 2024-10-31 23:44:34 +01:00
0495-DataComponent-API.patch Item DataComponent API (#10845) 2024-11-18 15:09:44 -05:00
0496-Optimise-color-distance-check-in-MapPalette-by-remov.patch Item DataComponent API (#10845) 2024-11-18 15:09:44 -05:00