1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-03-05 07:56:56 +01:00
PaperMC/patches/api
Spottedleaf 989fd77808 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 22:34:32 -08:00
..
Ability-to-apply-mending-to-XP-API.patch Finish API 2023-12-05 18:33:18 +01:00
Ability-to-get-Tile-Entities-from-a-chunk-without-sn.patch Finish API 2023-12-05 18:33:18 +01:00
Add-a-call-helper-to-Event.patch Finish API 2023-12-05 18:33:18 +01:00
Add-a-should-burn-in-sunlight-API-for-Phantoms-and-S.patch Finish API 2023-12-05 18:33:18 +01:00
Add-additional-open-container-api-to-HumanEntity.patch Finish API 2023-12-05 18:33:18 +01:00
Add-Adventure-message-to-PlayerAdvancementDoneEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Add-an-API-for-CanPlaceOn-and-CanDestroy-NBT-values.patch Re-add patches for can-place/can-destroy API () 2024-08-11 13:51:37 -07:00
Add-and-implement-PlayerRecipeBookClickEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-AnvilView-bypassEnchantmentLevelRestriction.patch Add AnvilView#bypassEnchantmentLevelRestriction () 2024-10-12 18:10:05 -03:00
Add-API-for-item-entity-health.patch Finish API 2023-12-05 18:33:18 +01:00
Add-API-for-quit-reason.patch Finish API 2023-12-05 18:33:18 +01:00
Add-API-for-resetting-a-single-score.patch Finish API 2023-12-05 18:33:18 +01:00
Add-api-for-spawn-egg-texture-colors.patch [ci skip] Move logic in our patches to ItemType/BlockType () 2024-05-23 10:32:02 -07:00
Add-API-methods-to-control-if-armour-stands-can-move.patch Finish API 2023-12-05 18:33:18 +01:00
Add-API-to-get-exact-interaction-point-in-PlayerInte.patch Finish API 2023-12-05 18:33:18 +01:00
Add-API-to-get-Material-from-Boats-and-Minecarts.patch okaaay let's go 2024-10-22 18:23:19 +02:00
Add-API-to-get-the-collision-shape-of-a-block-before.patch Updated Upstream (Bukkit/CraftBukkit) () 2023-12-16 18:09:28 -08:00
Add-APIs-to-replace-OfflinePlayer-getLastPlayed.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2024-01-26 20:17:06 +01:00
Add-ArmorStand-Item-Meta.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-05-11 14:48:37 -07:00
add-back-EntityPortalExitEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Add-Ban-Methods-to-Player-Objects.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Add-BaseComponent-sendMessage-methods-to-CommandSend.patch Finish API 2023-12-05 18:33:18 +01:00
Add-basic-Datapack-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-BeaconEffectEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-BellRevealRaiderEvent.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Add-BellRingEvent.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Add-Block-isValidTool.patch Deprecate for removal Block#isValidTool () 2024-09-27 09:28:04 -07:00
Add-BlockBreakBlockEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-BlockBreakProgressUpdateEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-BlockFailedDispenseEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-BlockLockCheckEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-BlockPreDispenseEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-BlockSoundGroup-interface.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Add-BlockStateMeta-clearBlockState.patch Add BlockStateMeta#clearBlockState () 2024-01-23 12:41:47 -08:00
Add-CartographyItemEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-cause-to-Weather-ThunderChangeEvents.patch Finish API 2023-12-05 18:33:18 +01:00
Add-command-line-option-to-load-extra-plugin-jars-no.patch Finish API 2023-12-05 18:33:18 +01:00
Add-command-to-reload-permissions.yml-and-require-co.patch Finish API 2023-12-05 18:33:18 +01:00
Add-CompostItemEvent-and-EntityCompostItemEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-configuration-option-to-prevent-player-names-fro.patch Finish API 2023-12-05 18:33:18 +01:00
add-consumeFuel-to-FurnaceBurnEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Add-critical-damage-API.patch Updated Upstream (Bukkit) () 2024-02-16 22:44:38 +00:00
Add-Destroy-Speed-API.patch De-deprecate BlockData#getDestroySpeed 2024-06-16 12:44:22 +02:00
add-DragonEggFormEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-dropLeash-variable-to-EntityUnleashEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Add-drops-to-shear-events.patch Add drops to shear events () 2023-12-28 14:41:07 -08:00
Add-ElderGuardianAppearanceEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-enchantment-seed-update-API.patch Add enchantment seed update API () 2024-08-25 21:39:06 +01:00
Add-enchantWithLevels-API.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Add-enchantWithLevels-with-enchantment-registry-set.patch Add enchantWithLevels with tag specification () 2024-09-27 21:04:57 +03:00
Add-Entity-Body-Yaw-API.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-04-06 12:53:39 -07:00
Add-entity-knockback-API.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-04-06 12:53:39 -07:00
Add-entity-knockback-events.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-entity-liquid-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-EntityBlockStorage-clearEntities.patch Finish API 2023-12-05 18:33:18 +01:00
Add-EntityDyeEvent-and-CollarColorable-interface.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-EntityFertilizeEggEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-EntityInsideBlockEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-EntityLoadCrossbowEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-EntityPortalReadyEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-EntityTeleportEndGatewayEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-EntityZapEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-EquipmentSlot-convenience-methods.patch Add EquipmentSlot#getOppositeHand () 2024-05-01 20:14:27 +03:00
Add-even-more-Enchantment-API.patch Add even more Enchantment API () 2024-08-17 13:58:36 -07:00
Add-event-for-player-editing-sign.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-exception-reporting-event.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-experience-points-API.patch Add experience points api () 2023-12-28 00:49:45 +01:00
Add-extended-PaperServerListPingEvent.patch Fixup and deprecate player profiles in ping event 2024-06-14 18:14:55 +02:00
Add-FastUtil-to-Bukkit.patch Updated Upstream (Bukkit/CraftBukkit) () 2023-12-16 18:09:28 -08:00
Add-FeatureFlag-API.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-10-31 23:44:34 +01:00
Add-FluidState-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-GameEvent-tags.patch Begin update to 1.20.5 2024-04-23 10:02:08 -07:00
Add-GameMode-isInvulnerable.patch Add GameMode#isInvulnerable () 2024-05-01 20:14:17 +03:00
add-get-set-drop-chance-to-EntityEquipment.patch Finish API 2023-12-05 18:33:18 +01:00
Add-getChunkSnapshot-includeLightData-parameter.patch Add getChunkSnapshot includeLightData parameter () 2024-02-10 22:28:56 +01:00
Add-getComputedBiome-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-getDrops-to-BlockState.patch Don't throw NPE for unplaced blockstate on #getDrops () 2024-04-06 23:26:56 +02:00
Add-getI18NDisplayName-API.patch Compiler issues v2 2024-10-25 13:52:04 +02:00
Add-getMainThreadExecutor-to-BukkitScheduler.patch Finish API 2023-12-05 18:33:18 +01:00
Add-getNearbyXXX-methods-to-Location.patch Finish API 2023-12-05 18:33:18 +01:00
Add-getOfflinePlayerIfCached-String.patch Finish API 2023-12-05 18:33:18 +01:00
Add-getTPS-method.patch Finish API 2023-12-05 18:33:18 +01:00
Add-GS4-Query-event.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
add-hand-to-BlockMultiPlaceEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Add-hand-to-fish-event-for-all-player-interactions.patch Finish API 2023-12-05 18:33:18 +01:00
Add-handshake-event-to-allow-plugins-to-handle-clien.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-hasCollision-methods-to-various-places.patch [ci skip] Move logic in our patches to ItemType/BlockType () 2024-05-23 10:32:02 -07:00
Add-Heightmap-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
Add-helpers-for-left-right-click-to-Action.patch Finish API 2023-12-05 18:33:18 +01:00
Add-HiddenPotionEffect-API.patch Add HiddenPotionEffect API () 2023-12-29 01:38:44 +01:00
Add-hook-to-remap-library-jars.patch Remap plugin libraries with namespace set to spigot () 2024-04-28 14:55:10 -07:00
Add-ignore-discounts-API.patch Finish API 2023-12-05 18:33:18 +01:00
add-isDeeplySleeping-to-HumanEntity.patch okaaay let's go 2024-10-22 18:23:19 +02:00
Add-item-slot-convenience-methods.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) () 2024-08-09 22:05:50 +02:00
Add-ItemStack-Recipe-API-helper-methods.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) () 2024-01-14 01:46:04 -08:00
Add-legacy-ping-support-to-PaperServerListPingEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-Lifecycle-Event-system.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-Listing-API-for-Player.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-02-11 22:28:00 +01:00
Add-LivingEntity-clearActiveItem.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-04-06 12:53:39 -07:00
Add-LivingEntity-getTargetEntity.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Add-LivingEntity-swingHand-EquipmentSlot-convenience.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-04-06 12:53:39 -07:00
Add-Material-Tags.patch Update material tags and entity effect 2024-10-27 12:20:17 +01:00
Add-MetadataStoreBase.removeAll-Plugin.patch Finish API 2023-12-05 18:33:18 +01:00
Add-method-isTickingWorlds-to-Bukkit.patch Finish API 2023-12-05 18:33:18 +01:00
Add-method-to-remove-all-active-potion-effects.patch Finish API 2023-12-05 18:33:18 +01:00
Add-methods-for-working-with-arrows-stuck-in-living-.patch Add Arrow/Stinger Removal Time API () 2024-02-09 21:56:13 +01:00
Add-methods-to-find-targets-for-lightning-strikes.patch Finish API 2023-12-05 18:33:18 +01:00
Add-methods-to-get-translation-keys.patch Fix NPE with enchantable () 2024-11-09 23:26:01 +01:00
Add-missing-block-data-API.patch Add Decorated Pot Cracked API () 2024-09-08 22:12:36 +02:00
Add-missing-effects.patch [ci skip] Fix Effect javadocs () 2024-08-11 15:35:45 -07:00
Add-missing-fishing-event-state.patch Extend fishing API () 2024-05-30 00:45:01 +03:00
Add-missing-InventoryType.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) () 2024-09-15 21:39:53 +02:00
Add-missing-team-sidebar-display-slots.patch Finish API 2023-12-05 18:33:18 +01:00
Add-Mob-Experience-reward-API.patch fix and cleanup loot table patches () 2024-05-26 12:51:15 -07:00
Add-Mob-Goal-API.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-Mob-lookAt-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-moon-phase-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-more-advancement-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-more-Campfire-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-More-Creeper-API.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-more-Evoker-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-more-fields-to-AsyncPreLoginEvent.patch Begin update to 1.20.5 2024-04-23 10:02:08 -07:00
Add-more-LimitedRegion-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-more-line-of-sight-methods.patch Finish API 2023-12-05 18:33:18 +01:00
Add-more-scoreboard-API.patch Fix and add new scoreboard API () 2023-12-23 11:53:07 -08:00
Add-more-WanderingTrader-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-more-Witch-API.patch Swap some nullable annotations () 2024-06-24 00:42:44 +02:00
Add-more-Zombie-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-Moving-Piston-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-NamespacedKey-biome-methods.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-10-31 23:44:34 +01:00
add-number-format-api.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-OBSTRUCTED-reason-to-BedEnterResult.patch Finish API 2023-12-05 18:33:18 +01:00
Add-Offline-PDC-API.patch Add offline PDC API () 2024-10-12 21:38:18 +02:00
Add-OfflinePlayer-isConnected.patch Finish API 2023-12-05 18:33:18 +01:00
Add-openSign-method-to-HumanEntity.patch Finish API 2023-12-05 18:33:18 +01:00
Add-paper-dumplisteners-command.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PhantomPreSpawnEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-Player-Client-Options-API.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-Player-getFishHook.patch Finish API 2023-12-05 18:33:18 +01:00
Add-player-idle-duration-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-Player-Warden-Warning-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-PlayerAdvancementCriterionGrantEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerArmorChangeEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerAttackEntityCooldownResetEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerConnectionCloseEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-PlayerFailMoveEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerFlowerPotManipulateEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerInsertLecternBookEvent.patch Add PlayerInsertLecternBookEvent [1.20 port] () 2024-09-29 23:28:48 +02:00
Add-PlayerInventorySlotChangeEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerItemCooldownEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerItemFrameChangeEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerJumpEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerKickEvent-causes.patch remove calls to DoNotUse methods 2024-04-27 18:18:20 -07:00
Add-PlayerPickItemEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerPostRespawnEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerSetSpawnEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerShearBlockEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-PlayerShieldDisableEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerSignCommandPreprocessEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerStopUsingItemEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PlayerUseUnknownEntityEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-playPickupItemAnimation-to-LivingEntity.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-04-06 12:53:39 -07:00
add-Plugin-getDataPath.patch Add Plugin#getDataPath () 2024-07-15 14:07:17 +02:00
Add-Position.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-pre-unbreaking-amount-to-PlayerItemDamageEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Add-predicate-for-blocks-when-raytracing.patch Finish API 2023-12-05 18:33:18 +01:00
Add-PrepareResultEvent-PrepareGrindstoneEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-PrePlayerAttackEntityEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-ProjectileCollideEvent.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Add-PufferFishStateChangeEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-Raw-Byte-Entity-Serialization.patch Finish API 2023-12-05 18:33:18 +01:00
Add-Raw-Byte-ItemStack-Serialization.patch Fixup command precprocess cancellation () 2024-09-22 21:25:37 +02:00
Add-ray-tracing-methods-to-LivingEntity.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Add-recipe-to-cook-events.patch Finish API 2023-12-05 18:33:18 +01:00
Add-recipeBrewTime.patch Add startingBrewTime () 2024-09-28 21:14:20 +02:00
Add-RegistryAccess-for-managing-registries.patch Fix NPE with enchantable () 2024-11-09 23:26:01 +01:00
add-RespawnFlags-to-PlayerRespawnEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Add-sender-name-to-commands.yml-replacement.patch Finish API 2023-12-05 18:33:18 +01:00
Add-sendOpLevel-API.patch more cleanup and resource pack api fixes 2023-12-08 15:13:02 -08:00
Add-setPlayerProfile-API-for-Skulls.patch Finish API 2023-12-05 18:33:18 +01:00
Add-Shearable-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-ShulkerDuplicateEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-Sneaking-API-for-Entities.patch Finish API 2023-12-05 18:33:18 +01:00
Add-source-block-constructor-and-getChangedBlockData.patch Clone mutable types in events when changes are discarded () 2024-03-20 13:42:29 -07:00
Add-source-to-PlayerExpChangeEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Add-spectator-target-events.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-String-based-Action-Bar-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-Structure-check-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-StructuresLocateEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-sun-related-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-TameableDeathMessageEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-TargetHitEvent-API.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-ThrownEggHatchEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-Tick-TemporalUnit.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-tick-times-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-titleOverride-to-InventoryOpenEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Add-TNTPrimeEvent.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Add-UnknownCommandEvent.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-view-distance-API.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-02-11 22:28:00 +01:00
Add-villager-reputation-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Add-WardenAngerChangeEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-WaterBottleSplashEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-whitelist-events.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-WhitelistToggleEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Add-workaround-for-plugins-modifying-the-parent-of-t.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Add-World.getEntity-UUID-API.patch Finish API 2023-12-05 18:33:18 +01:00
Add-worldborder-events.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
added-2-new-TargetReasons-for-1.16-mob-behavior.patch Finish API 2023-12-05 18:33:18 +01:00
Added-API-to-get-player-ha-proxy-address.patch Added API to get player's proxy address () 2024-05-06 00:39:32 +08:00
Added-byte-array-serialization-deserialization-for-P.patch Updated Upstream (Bukkit/CraftBukkit) 2023-12-08 11:00:39 -08:00
Added-EntityDamageItemEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Added-EntityToggleSitEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Added-PlayerBedFailEnterEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Added-PlayerChangeBeaconEffectEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Added-PlayerDeepSleepEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Added-PlayerLecternPageChangeEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Added-PlayerLoomPatternSelectEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
added-PlayerNameEntityEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Added-PlayerStonecutterRecipeSelectEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Added-PlayerTradeEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Added-ServerResourcesReloadedEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Added-WorldGameRuleChangeEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Additional-Block-Material-API-s.patch Finish API 2023-12-05 18:33:18 +01:00
Additional-world.getNearbyEntities-API-s.patch Finish API 2023-12-05 18:33:18 +01:00
additions-to-PlayerGameModeChangeEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Adds-PlayerArmSwingEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Adventure.patch Configure mockito agent () 2024-11-09 22:49:07 +01:00
Allow-adding-items-to-BlockDropItemEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Allow-Blocks-to-be-accessed-via-a-long-key.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Allow-Bukkit-plugin-to-use-Paper-PluginLoader-API.patch Allow using PluginLoader classpath API from Bukkit plugins () 2024-05-23 13:13:02 -07:00
Allow-disabling-armour-stand-ticking.patch Finish API 2023-12-05 18:33:18 +01:00
Allow-modifying-library-loader-jars-bytecode.patch Rewrite reflection in library loader jars () 2024-04-28 13:14:10 -07:00
Allow-plugins-to-use-SLF4J-for-logging.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-10-21 00:06:54 +02:00
Allow-proper-checking-of-empty-item-stacks.patch Finish API 2023-12-05 18:33:18 +01:00
Allow-Reloading-of-Command-Aliases.patch Finish API 2023-12-05 18:33:18 +01:00
Allow-setting-the-vex-s-summoner.patch Finish API 2023-12-05 18:33:18 +01:00
Allow-to-change-the-podium-of-the-EnderDragon.patch Finish API 2023-12-05 18:33:18 +01:00
Allow-trident-custom-damage.patch Finish API 2023-12-05 18:33:18 +01:00
Also-load-resources-from-LibraryLoader.patch Finish API 2023-12-05 18:33:18 +01:00
Amend-PlayerInteractAtEntityEvent-javadoc-for-ArmorS.patch Finish API 2023-12-05 18:33:18 +01:00
AnvilDamageEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
API-for-an-entity-s-scoreboard-name.patch Finish API 2023-12-05 18:33:18 +01:00
API-for-checking-sent-chunks.patch Added chunk view API () 2024-04-20 19:56:59 +02:00
API-for-creating-command-sender-which-forwards-feedb.patch Finish API 2023-12-05 18:33:18 +01:00
API-for-updating-recipes-on-clients.patch Readd last API patch (with TODO) 2024-10-27 09:43:00 +01:00
API-to-get-a-BlockState-without-a-snapshot.patch Finish API 2023-12-05 18:33:18 +01:00
Arrow-pickup-rule-API.patch Finish API 2023-12-05 18:33:18 +01:00
Async-Chunks-API.patch Rework async chunk api implementation 2024-11-18 22:34:32 -08:00
AsyncTabCompleteEvent.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Attribute-Modifier-API-improvements.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) () 2024-09-15 21:39:53 +02:00
Basic-PlayerProfile-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Beacon-API-custom-effect-ranges.patch Finish API 2023-12-05 18:33:18 +01:00
Block-Ticking-API.patch De-deprecate BlockData#getDestroySpeed 2024-06-16 12:44:22 +02:00
BlockDestroyEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Brand-support.patch Finish API 2023-12-05 18:33:18 +01:00
Brigadier-based-command-API.patch Configure mockito agent () 2024-11-09 22:49:07 +01:00
Bucketable-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Build-system-changes.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Change-EnderEye-target-without-changing-other-things.patch Finish API 2023-12-05 18:33:18 +01:00
Change-the-reserved-channel-check-to-be-sensible.patch Finish API 2023-12-05 18:33:18 +01:00
Clone-mutables-to-prevent-unexpected-issues.patch Call EntityPortalEnterEvent on endgateways and make cancellable () 2024-06-23 15:01:12 -07:00
Code-Generation.patch Fix NPE with enchantable () 2024-11-09 23:26:01 +01:00
Collision-API.patch [ci skip] Add more identifying patch comments 2024-01-19 22:13:42 +01:00
Complete-resource-pack-API.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Configurable-sculk-sensor-listener-range.patch Finish API 2023-12-05 18:33:18 +01:00
Convert-project-to-Gradle.patch Upstream update 2024-10-24 19:29:35 +02:00
Create-HoverEvent-from-ItemStack-Entity.patch Finish API 2023-12-05 18:33:18 +01:00
create-TileStateInventoryHolder.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Custom-Chat-Completion-Suggestions-API.patch Finish API 2023-12-05 18:33:18 +01:00
Custom-Potion-Mixes.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Custom-replacement-for-eaten-items.patch Finish API 2023-12-05 18:33:18 +01:00
DataComponent-API.patch Item DataComponent API () 2024-11-18 15:09:44 -05:00
Deprecate-and-replace-methods-with-old-StructureType.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-02-11 22:28:00 +01:00
Deprecate-for-removal-all-OldEnum-related-methods.patch bunch more general fixes 2024-10-31 20:35:06 -07:00
Deprecate-InvAction-HOTBAR_MOVE_AND_READD.patch Deprecate InvAction#HOTBAR_MOVE_AND_READD () 2024-05-29 14:56:14 -07:00
Deprecate-ItemStack-setType.patch Deprecate ItemStack#setType & add ItemStack#withType () 2024-04-12 17:16:22 -04:00
Display-warning-on-deprecated-recipe-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) () 2024-08-09 22:05:50 +02:00
Dolphin-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
Don-t-use-snapshots-for-Timings-Tile-Entity-reports.patch Finish API 2023-12-05 18:33:18 +01:00
Elder-Guardian-appearance-API.patch Finish API 2023-12-05 18:33:18 +01:00
EnderDragon-Events.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Enderman.teleportRandomly.patch Finish API 2023-12-05 18:33:18 +01:00
EndermanAttackPlayerEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
EndermanEscapeEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
ensureServerConversions-API.patch Compiler issues v2 2024-10-25 13:52:04 +02:00
Entity-AddTo-RemoveFrom-World-Events.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Entity-fromMobSpawner.patch Finish API 2023-12-05 18:33:18 +01:00
Entity-getChunk-API.patch Finish API 2023-12-05 18:33:18 +01:00
Entity-isTicking.patch Finish API 2023-12-05 18:33:18 +01:00
Entity-Jump-API.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Entity-Origin-API.patch Finish API 2023-12-05 18:33:18 +01:00
Entity-powdered-snow-API.patch Finish API 2023-12-05 18:33:18 +01:00
EntityMoveEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
EntityPathfindEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
EntityRegainHealthEvent-isFastRegen-API.patch Finish API 2023-12-05 18:33:18 +01:00
EntityShootBowEvent-consumeArrow-and-getArrowItem-AP.patch Swap some nullable annotations () 2024-06-24 00:42:44 +02:00
Expand-ArmorStand-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Expand-Explosions-API.patch Add PlayerInsertLecternBookEvent [1.20 port] () 2024-09-29 23:28:48 +02:00
Expand-FallingBlock-API.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Expand-LingeringPotion-API.patch Finish API 2023-12-05 18:33:18 +01:00
Expand-Location-Manipulation-API.patch Finish API 2023-12-05 18:33:18 +01:00
Expand-PlayerItemMendEvent.patch Adopt previous commit changes in API 2024-06-14 16:02:59 +02:00
Expand-Pose-API.patch Finish API 2023-12-05 18:33:18 +01:00
Expand-world-key-API.patch Add getWorld method that uses adventure Key () 2024-08-19 10:41:55 +01:00
Expand-World.spawnParticle-API-and-add-Builder.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Expanded-Hopper-API.patch Expand Hopper BlockState API () 2024-03-16 20:28:50 +01:00
ExperienceOrb-merging-stacking-API.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
ExperienceOrbs-API-for-Reason-Source-Triggering-play.patch Finish API 2023-12-05 18:33:18 +01:00
Experimental-annotations-change.patch update generator 2024-10-26 18:03:25 +02:00
Expose-attack-cooldown-methods-for-Player.patch more cleanup and resource pack api fixes 2023-12-08 15:13:02 -08:00
Expose-clicked-BlockFace-during-BlockDamageEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Expose-client-protocol-version-and-virtual-host.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Expose-codepoint-limit-in-YamlConfigOptions-and-incr.patch Finish API 2023-12-05 18:33:18 +01:00
Expose-furnace-minecart-push-values.patch Finish API 2023-12-05 18:33:18 +01:00
Expose-hand-during-BlockCanBuildEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Expose-hasColor-to-leather-armor.patch Fix a few issues with ItemMeta () 2024-05-26 00:58:56 +02:00
Expose-isFuel-and-canSmelt-methods-to-FurnaceInvento.patch Finish API 2023-12-05 18:33:18 +01:00
Expose-LivingEntity-hurt-direction.patch okaaay let's go 2024-10-22 18:23:19 +02:00
Expose-LootTable-of-DecoratedPot.patch Expose LootTable of DecoratedPot () 2024-01-23 21:57:17 +01:00
Expose-MinecraftServer-isRunning.patch Finish API 2023-12-05 18:33:18 +01:00
Expose-protocol-version.patch deprecate our ItemRarity API 2024-04-26 16:43:59 -07:00
Expose-server-build-information.patch Remove timings impl 2024-10-27 18:11:15 +01:00
Expose-server-CommandMap.patch Finish API 2023-12-05 18:33:18 +01:00
Expose-the-Entity-Counter-to-allow-plugins-to-use-va.patch Finish API 2023-12-05 18:33:18 +01:00
Expose-the-internal-current-tick.patch Finish API 2023-12-05 18:33:18 +01:00
Expose-Tracked-Players.patch Finish API 2023-12-05 18:33:18 +01:00
Expose-vanilla-BiomeProvider-from-WorldInfo.patch Finish API 2023-12-05 18:33:18 +01:00
Extend-VehicleCollisionEvent-move-HandlerList-up.patch [ci skip] Minor cleanup and patch merges 2024-01-16 19:27:39 +01:00
Fill-Profile-Property-Events.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Fireworks-API-s.patch Finish API 2023-12-05 18:33:18 +01:00
Fix-BanList-API.patch Finish API 2023-12-05 18:33:18 +01:00
Fix-custom-statistic-criteria-creation.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-10-31 23:44:34 +01:00
Fix-DamageSource-API.patch Fix DamageSource API () 2024-03-16 11:51:22 -07:00
fix-empty-array-elements-in-command-arguments.patch Finish API 2023-12-05 18:33:18 +01:00
Fix-equipment-slot-and-group-API.patch Expose LivingEntity#canUseSlot () 2024-06-23 23:11:39 +03:00
Fix-HandlerList-for-InventoryBlockStartEvent-subclas.patch Deprecate ItemStack#setType & add ItemStack#withType () 2024-04-12 17:16:22 -04:00
Fix-HelpCommand-searching.patch Fix HelpCommand searching () 2024-07-15 12:42:10 +02:00
Fix-incorrect-new-blockstate-in-EntityBreakDoorEvent.patch Finish API 2023-12-05 18:33:18 +01:00
fix-Instruments.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) () 2024-11-04 09:42:38 -08:00
Fix-issues-with-mob-conversion.patch Finish API 2023-12-05 18:33:18 +01:00
Fix-issues-with-recipe-API.patch bunch more general fixes 2024-10-31 20:35:06 -07:00
Fix-ItemFlags.patch more ItemFlag fixes 2024-04-27 14:32:14 -07:00
Fix-NotePlayEvent.patch Finish API 2023-12-05 18:33:18 +01:00
Fix-NPE-on-Boat-getStatus.patch Finish API 2023-12-05 18:33:18 +01:00
Fix-PickupStatus-getting-reset.patch Fix PickupStatus getting reset () 2024-07-27 16:37:51 +02:00
Fix-PlayerSwapHandItemsEvent-throwing-exception-when.patch Finish API 2023-12-05 18:33:18 +01:00
Fix-ServerListPingEvent-flagging-as-Async.patch Finish API 2023-12-05 18:33:18 +01:00
Fix-SpawnEggMeta-get-setSpawnedType.patch Finish API 2023-12-05 18:33:18 +01:00
Fix-SpawnerEntry-Equipment-API.patch Test compile fixes 2024-10-25 19:15:40 +02:00
Fix-Spigot-annotation-mistakes.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) () 2024-11-04 09:42:38 -08:00
Fix-upstream-javadocs.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-11-17 16:52:44 +01:00
Fixes-and-additions-to-the-spawn-reason-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) () 2024-07-18 10:13:20 +02:00
Flying-Fall-Damage-API.patch Finish API 2023-12-05 18:33:18 +01:00
Folia-scheduler-and-owned-region-API.patch [ci skip] Add more identifying patch comments 2024-01-19 22:13:42 +01:00
Freeze-Tick-Lock-API.patch Add methods to change entity physics () 2024-03-23 22:26:17 +01:00
Friction-API.patch Add Friction API to minecarts 2024-10-30 17:31:33 +01:00
Furnace-RecipesUsed-API.patch Finish API 2023-12-05 18:33:18 +01:00
General-ItemMeta-fixes.patch bunch more general fixes 2024-10-31 20:35:06 -07:00
Get-entity-default-attributes.patch deprecate our ItemRarity API 2024-04-26 16:43:59 -07:00
getPlayerUniqueId-API.patch Finish API 2023-12-05 18:33:18 +01:00
Goat-ram-API.patch Finish API 2023-12-05 18:33:18 +01:00
Graduate-bungeecord-chat-API-from-spigot-subclasses.patch Finish API 2023-12-05 18:33:18 +01:00
Handle-plugin-prefixes-in-implementation-logging-con.patch Finish API 2023-12-05 18:33:18 +01:00
IllegalPacketEvent.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Implement-furnace-cook-speed-multiplier-API.patch Finish API 2023-12-05 18:33:18 +01:00
Implement-regenerateChunk.patch Finish API 2023-12-05 18:33:18 +01:00
improve-BanList-types.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Improve-Block-breakNaturally-API.patch Finish API 2023-12-05 18:33:18 +01:00
Improve-death-events.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-10-31 23:44:34 +01:00
Improve-entity-effect-API.patch remove some leftovers 2024-10-29 15:33:42 +01:00
Improve-item-default-attribute-API.patch Improve default item attributes API () 2024-05-23 11:44:07 -07:00
Improve-Item-Rarity-API.patch Add ItemType#getItemRarity () 2024-07-15 07:38:20 -07:00
Improve-PortalEvents.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) () 2024-07-18 10:13:20 +02:00
Improve-Registry.patch Fix NPE with enchantable () 2024-11-09 23:26:01 +01:00
Improve-scoreboard-entries.patch Finish API 2023-12-05 18:33:18 +01:00
Improve-StandardMessenger-exception-messages.patch Improve standard messenger logging 2024-08-12 18:42:08 +02:00
Improve-the-Saddle-API-for-Horses.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Introduce-beacon-activation-deactivation-events.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Introduce-registry-entry-and-builders.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-10-21 00:06:54 +02:00
Inventory-close.patch Finish API 2023-12-05 18:33:18 +01:00
Inventory-getHolder-method-without-block-snapshot.patch Finish API 2023-12-05 18:33:18 +01:00
Inventory-removeItemAnySlot.patch Finish API 2023-12-05 18:33:18 +01:00
InventoryCloseEvent-Reason-API.patch Finish API 2023-12-05 18:33:18 +01:00
isChunkGenerated-API.patch Finish API 2023-12-05 18:33:18 +01:00
Item-canEntityPickup.patch [ci skip] Add more identifying patch comments 2024-01-19 22:13:42 +01:00
Item-Mutation-Fixes.patch Deprecate ItemStack#setType & add ItemStack#withType () 2024-04-12 17:16:22 -04:00
Item-no-age-no-player-pickup.patch Finish API 2023-12-05 18:33:18 +01:00
Item-serialization-as-json.patch Add Item serialization as json api () 2024-09-08 22:58:30 +03:00
ItemStack-API-additions-for-quantity-flags-lore.patch Fix a few compile errors 2024-06-14 13:07:50 +02:00
ItemStack-damage-API.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-04-06 12:53:39 -07:00
ItemStack-editMeta.patch Finish API 2023-12-05 18:33:18 +01:00
ItemStack-getMaxItemUseDuration.patch Fix more compile issues 2024-06-14 14:11:52 +02:00
ItemStack-repair-check-API.patch deprecate our ItemRarity API 2024-04-26 16:43:59 -07:00
ItemStack-Tooltip-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Leashable-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Left-handed-API.patch fix and cleanup loot table patches () 2024-05-26 12:51:15 -07:00
Limit-setBurnTime-to-valid-short-values.patch Finish API 2023-12-05 18:33:18 +01:00
living-entity-allow-attribute-registration.patch Finish API 2023-12-05 18:33:18 +01:00
LivingEntity-Active-Item-API.patch Add more item use API () 2024-04-06 23:44:27 +02:00
LivingEntity-setKiller.patch Finish API 2023-12-05 18:33:18 +01:00
Location.isChunkLoaded-API.patch Finish API 2023-12-05 18:33:18 +01:00
Location.toBlockLocation-toCenterLocation.patch Finish API 2023-12-05 18:33:18 +01:00
LootTable-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Make-a-PDC-view-accessible-directly-from-ItemStack.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Make-EntityUnleashEvent-cancellable.patch Finish API 2023-12-05 18:33:18 +01:00
Make-shield-blocking-delay-configurable.patch Finish API 2023-12-05 18:33:18 +01:00
Make-the-default-permission-message-configurable.patch Finish API 2023-12-05 18:33:18 +01:00
Material-API-additions.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-10-21 00:06:54 +02:00
MerchantRecipe-add-copy-constructor.patch Finish API 2023-12-05 18:33:18 +01:00
Misc-Utils.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Missing-Entity-API.patch okaaay let's go 2024-10-22 18:23:19 +02:00
Mob-Pathfinding-API.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Mob-Spawner-API-Enhancements.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) () 2024-07-06 21:19:14 +02:00
More-Chest-Block-API.patch Add a way to check whether the chest is blocked () 2024-05-05 20:57:28 +03:00
More-CommandBlock-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
More-DragonBattle-API.patch Finish API 2023-12-05 18:33:18 +01:00
More-Enchantment-API.patch Add even more Enchantment API () 2024-08-17 13:58:36 -07:00
More-Lidded-Block-API.patch Finish API 2023-12-05 18:33:18 +01:00
More-lightning-API.patch Finish API 2023-12-05 18:33:18 +01:00
More-PotionEffectType-API.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-10-21 00:06:54 +02:00
More-Projectile-API.patch Update launchProjectile API () 2024-09-21 21:19:02 +02:00
More-Raid-API.patch More Raid API () 2024-04-20 12:57:51 -07:00
More-Sign-Block-API.patch Allow getting/setting the sign's editor uuid () 2024-08-18 00:36:27 +03:00
More-Teleport-API.patch Only expose velocity relative tp flags to API () 2024-10-31 17:25:52 +01:00
More-vanilla-friendly-methods-to-update-trades.patch Finish API 2023-12-05 18:33:18 +01:00
More-World-API.patch remove api that was scheduled for removal 2024-06-14 14:07:44 -07:00
Multi-Block-Change-API.patch Finish API 2023-12-05 18:33:18 +01:00
Multiple-Entries-with-Scoreboards.patch Finish API 2023-12-05 18:33:18 +01:00
Nameable-Banner-API.patch Finish API 2023-12-05 18:33:18 +01:00
Optimise-color-distance-check-in-MapPalette-by-remov.patch Optimize custom map rendering () 2024-11-11 17:04:22 +00:00
Optimize-Hoppers.patch Finish API 2023-12-05 18:33:18 +01:00
Option-to-prevent-data-components-copy-in-smithing-r.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-10-21 00:06:54 +02:00
Paper-Plugins.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-10-31 23:44:34 +01:00
Paper-Utils.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Performance-Concurrency-Improvements-to-Permissions.patch Update upstream (Bukkit/CraftBukkit/Spigot) () 2024-06-13 16:45:27 +02:00
Player-affects-spawning-API.patch Finish API 2023-12-05 18:33:18 +01:00
Player-Chunk-Load-Unload-Events.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Player-elytra-boost-API.patch more cleanup and resource pack api fixes 2023-12-08 15:13:02 -08:00
Player-Entity-Tracking-Events.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Player-Tab-List-and-Title-APIs.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Player.setPlayerProfile-API.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
PlayerAttemptPickupItemEvent.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
PlayerDeathEvent-getItemsToKeep.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-05-11 14:48:37 -07:00
PlayerDeathEvent-shouldDropExperience.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-05-11 14:48:37 -07:00
PlayerElytraBoostEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
PlayerLaunchProjectileEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
PlayerMoveEvent-Improvements.patch Finish API 2023-12-05 18:33:18 +01:00
PlayerNaturallySpawnCreaturesEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
PlayerPickupExperienceEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
PlayerPickupItemEvent-setFlyAtPlayer.patch [ci skip] Cleanup events () 2024-02-01 10:15:57 +01:00
PlayerReadyArrowEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
PlayerTeleportEndGatewayEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Potential-bed-API.patch Finish API 2023-12-05 18:33:18 +01:00
PotionEffect-clone-methods.patch Finish API 2023-12-05 18:33:18 +01:00
PreCreatureSpawnEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
PreSpawnerSpawnEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Profile-Lookup-Events.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
ProfileWhitelistVerifyEvent.patch Use components properly in ProfileWhitelistVerifyEvent () 2024-10-02 05:32:05 -07:00
Provide-Chunk-Coordinates-as-a-Long-API.patch Finish API 2023-12-05 18:33:18 +01:00
Provide-E-TE-Chunk-count-stat-methods.patch Finish API 2023-12-05 18:33:18 +01:00
Proxy-ItemStack-to-CraftItemStack.patch Use ItemStack.empty() when air is passed into constructor 2024-06-18 15:31:30 +02:00
RangedEntity-API.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Reduce-thread-synchronization-in-MetadataStoreBase.patch Finish API 2023-12-05 18:33:18 +01:00
Registry-Modification-API.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-10-21 00:06:54 +02:00
Remove-unnecessary-durability-check-in-ItemStack-isS.patch Finish API 2023-12-05 18:33:18 +01:00
Replace-ItemFlag.HIDE_POTION_EFFECTS.patch Add since to deprecated for removals () 2024-06-04 12:40:18 -07:00
Return-null-for-empty-String-in-NamespacedKey.fromSt.patch More compile fixes 2024-04-25 22:47:32 +02:00
Rewrite-LogEvents-to-contain-the-source-jars-in-stac.patch [ci skip] Minor cleanup and patch merges 2024-01-16 19:27:39 +01:00
SculkCatalyst-bloom-API.patch Finish API 2023-12-05 18:33:18 +01:00
Server-Tick-Events.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Set-true-custom-payload-channel-size-limit.patch Increase default custom payload channel size limit () 2023-12-25 12:01:18 +01:00
Shoulder-Entities-Release-API.patch Finish API 2023-12-05 18:33:18 +01:00
SkeletonHorse-Additions.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
Slime-Pathfinder-Events.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Spawn-Reason-API.patch Finish API 2023-12-05 18:33:18 +01:00
Stinger-API.patch Add Arrow/Stinger Removal Time API () 2024-02-09 21:56:13 +01:00
Support-cancellation-supression-of-EntityDismount-Ve.patch Begin update to 1.20.5 2024-04-23 10:02:08 -07:00
Support-components-in-ItemMeta.patch okaaay let's go 2024-10-22 18:23:19 +02:00
Suspicious-Effect-Entry-API.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
System-prop-for-default-config-comment-parsing.patch Finish API 2023-12-05 18:33:18 +01:00
Tag-Lifecycle-Events.patch Finish converting most of the undeprecated api to jspecify 2024-09-30 11:44:36 -07:00
Tameable-getOwnerUniqueId-API.patch Finish API 2023-12-05 18:33:18 +01:00
Test-changes.patch Configure mockito agent () 2024-11-09 22:49:07 +01:00
Timings-v2.patch Remove timings impl 2024-10-27 18:11:15 +01:00
Turtle-API.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
Use-ASM-for-event-executors.patch Updated Upstream (Bukkit/CraftBukkit) () 2024-10-21 00:06:54 +02:00
Villager-resetOffers.patch Finish API 2023-12-05 18:33:18 +01:00
Villager-Restocks-API.patch Finish API 2023-12-05 18:33:18 +01:00
Void-damage-configuration-API.patch Configurable per-world void damage offset/damage() 2024-09-29 18:06:13 -04:00
Warn-on-strange-EventHandler-return-types.patch Finish API 2023-12-05 18:33:18 +01:00
Win-Screen-API.patch Finish API 2023-12-05 18:33:18 +01:00
WitchConsumePotionEvent.patch Finish converting all events to jspecify annotations 2024-09-29 16:48:34 -07:00
WitchReadyPotionEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
WitchThrowPotionEvent.patch Begin switching to JSpecify annotations () 2024-09-29 12:52:13 -07:00
WorldCreator-keepSpawnLoaded.patch Finish API 2023-12-05 18:33:18 +01:00
Zombie-API-breaking-doors.patch Compiler issues v4 2024-10-25 17:08:48 +02:00