Paper/Spigot-Server-Patches
Aikar 67832e641f performance: Many Entity Activation Range Improvements
1) Immunity no longer gives 20 tick immunity, each immunity check can
give its own tick value on how long it lasts, drastically cutting down on most to 0-1 ticks.

2) Fixed Villager Immunity to use proper 1.15 check for Breeding.

3) Fixed Water Mobs being 100% immune due to the inWater check...

4) Fixed flying mobs being 100% immune due to the !onGround check...

5) Made Insentient mobs only check for the hasTasks during immunity check window, not every single tick. this made them way more active than desired
  - this puts behavior closer to inline with my original behavior in Spigot, but still does some checks to allow them temporary immunity, just not as much as before.

6) Inactive Entities would "inch" while trying to move, effectively getting nowhere. Now while an entity is inactive, it just won't even try to move.
  - this saves us from the expensiveness of Entity movement 1 out of 20 ticks. Now they will only move while either active or triggered a true immunity.
2020-03-29 22:26:44 -04:00
..
Ability-to-apply-mending-to-XP-API.patch Fix Player#applyMending NPE (#2917) 2020-01-28 19:20:53 +01:00
Ability-to-change-PlayerProfile-in-AsyncPreLoginEven.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Ability-to-get-Tile-Entities-from-a-chunk-without-sn.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Access-items-by-EquipmentSlot.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Activation-Range-Improvements.patch performance: Many Entity Activation Range Improvements 2020-03-29 22:26:44 -04:00
Add-ability-to-configure-frosted_ice-properties.patch Ensure portal search radius is used when teleporting players (#2877) 2020-01-18 09:28:32 -08:00
Add-API-methods-to-control-if-armour-stands-can-move.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-APIs-to-replace-OfflinePlayer-getLastPlayed.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Add-ArmorStand-Item-Meta.patch Updated Upstream (CraftBukkit) 2020-03-02 19:13:59 +00:00
Add-BeaconEffectEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-config-to-disable-ender-dragon-legacy-check.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Add-configurable-despawn-distances-for-living-entiti.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Add-configurable-portal-search-radius.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Add-configuration-option-to-prevent-player-names-fro.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Add-CraftMagicNumbers.isSupportedApiVersion.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-01 15:20:54 +00:00
Add-Debug-Entities-option-to-debug-dupe-uuid-issues.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Add-Early-Warning-Feature-to-WatchDog.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Add-effect-to-block-break-naturally.patch Add effect to block break naturally (#2819) 2020-01-18 20:10:06 -06:00
Add-EntityZapEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-exception-reporting-event.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
add-hand-to-BlockMultiPlaceEvent.patch Optimise ticklistserver (#2957) 2020-03-18 05:17:28 -07:00
Add-hand-to-bucket-events.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-handshake-event-to-allow-plugins-to-handle-clien.patch More progress 2019-12-10 20:43:21 -06:00
Add-Heightmap-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Add-LivingEntity-getTargetEntity.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Add-method-to-open-already-placed-sign.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-methods-for-working-with-arrows-stuck-in-living-.patch Updated Upstream (Bukkit/CraftBukkit) 2020-02-25 18:57:15 +00:00
Add-MinecraftKey-Information-to-Objects.patch Indicate ticking status in entity list command (#2856) 2020-03-18 05:38:24 -07:00
Add-More-Creeper-API.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
add-more-information-to-Entity.toString.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Add-more-Witch-API.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-more-Zombie-API.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Add-option-to-allow-iron-golems-to-spawn-in-air.patch Optimise ticklistserver (#2957) 2020-03-18 05:17:28 -07:00
Add-option-to-disable-pillager-patrols.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-option-to-make-parrots-stay-on-shoulders-despite.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
Add-option-to-nerf-pigmen-from-nether-portals.patch performance: Many Entity Activation Range Improvements 2020-03-29 22:26:44 -04:00
Add-option-to-prevent-players-from-moving-into-unloa.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Add-PhantomPreSpawnEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-PlayerArmorChangeEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-PlayerConnectionCloseEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-PlayerInitialSpawnEvent.patch More progress 2019-12-10 20:43:21 -06:00
Add-PlayerJumpEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-PlayerUseUnknownEntityEvent.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
Add-ProjectileCollideEvent.patch Fix ProjectilCollideEvent cancellation (Fixes #2953) 2020-02-22 15:00:41 +00:00
Add-ray-tracing-methods-to-LivingEntity.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Add-server-name-parameter.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-setPlayerProfile-API-for-Skulls.patch Fix SkullMeta.setPlayerProfile() (#2833) 2020-01-10 19:07:29 +01:00
Add-setting-for-proxy-online-mode-status.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Add-some-Debug-to-Chunk-Entity-slices.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Add-source-to-PlayerExpChangeEvent.patch Updated Upstream (CraftBukkit) 2020-01-14 21:43:50 +00:00
Add-sun-related-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Add-system-property-to-disable-book-size-limits.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Add-ThrownEggHatchEvent.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Add-TNTPrimeEvent.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Add-UnknownCommandEvent.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Add-Velocity-IP-Forwarding-Support.patch Update hidden-configs 2020-03-30 03:52:56 +01:00
Add-velocity-warnings.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-02 11:53:48 +00:00
Add-version-history-to-version-command.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-01-28 19:43:57 +00:00
Add-World-Util-Methods.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
All-chunks-are-slime-spawn-chunks-toggle.patch Work on server patches 2019-12-11 00:56:03 +00:00
Allow-chests-to-be-placed-with-NBT-data.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Allow-disabling-armour-stand-ticking.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Allow-for-toggling-of-spawn-chunks.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Allow-nerfed-mobs-to-jump-and-take-water-damage.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Allow-overriding-the-java-version-check.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Allow-Reloading-of-Command-Aliases.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Allow-Reloading-of-Custom-Permissions.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Allow-Saving-of-Oversized-Chunks.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2019-12-17 22:39:07 +00:00
Allow-setting-the-vex-s-summoner.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Allow-spawning-Item-entities-with-World.spawnEntity.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Allow-specifying-a-custom-authentication-servers-dow.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Always-tick-falling-blocks.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Anti-Xray.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
AnvilDamageEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
API-to-get-a-BlockState-without-a-snapshot.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Asynchronous-chunk-IO-and-loading.patch Update hidden-configs 2020-03-30 03:52:56 +01:00
AsyncTabCompleteEvent.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Auto-fix-bad-Y-levels-on-player-login.patch Performance patches prerequisite (#2802) 2020-01-27 16:16:53 -08:00
Avoid-blocking-on-Network-Manager-creation.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Avoid-dimension-id-collisions.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Avoid-hopper-searches-if-there-are-no-items.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Avoid-item-merge-if-stack-size-above-max-stack-size.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Avoid-NPE-in-PathfinderGoalTempt.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Backport-fix-for-MC-167561.patch Optimise ticklistserver (#2957) 2020-03-18 05:17:28 -07:00
Basic-PlayerProfile-API.patch Optimise ticklistserver (#2957) 2020-03-18 05:17:28 -07:00
Be-a-bit-more-informative-in-maxHealth-exception.patch Updated Upstream (Bukkit/CraftBukkit) 2020-02-25 18:57:15 +00:00
Be-more-tolerant-of-invalid-attributes.patch Be more tolerant of invalid attributes 2020-02-06 19:32:49 -06:00
Bees-get-gravity-in-void.-Fixes-MC-167279.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Block-Enderpearl-Travel-Exploit.patch Ensure portal search radius is used when teleporting players (#2877) 2020-01-18 09:28:32 -08:00
Block-Entity-remove-from-being-called-on-Players.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Block-player-logins-during-server-shutdown.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
BlockDestroyEvent.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Book-Size-Limits.patch Update hidden-configs 2020-03-30 03:52:56 +01:00
Bound-Treasure-Maps-to-World-Border.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Break-up-and-make-tab-spam-limits-configurable.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Cache-user-authenticator-threads.patch Performance patches prerequisite (#2802) 2020-01-27 16:16:53 -08:00
Call-PaperServerListPingEvent-for-legacy-pings.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Call-player-spectator-target-events.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Call-WhitelistToggleEvent-when-whitelist-is-toggled.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Cap-Entity-Collisions.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Catch-exceptions-from-dispenser-entity-spawns.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Catch-JsonParseException-in-Entity-and-TE-names.patch Optimise ticklistserver (#2957) 2020-03-18 05:17:28 -07:00
Change-implementation-of-tile-entity-removal-list.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-01-28 19:43:57 +00:00
Check-Drowned-for-Villager-Aggression-Config.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Check-online-mode-before-converting-and-renaming-pla.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Chunk-debug-command.patch Optimise ticklistserver (#2957) 2020-03-18 05:17:28 -07:00
Chunk-registration-fixes.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Chunk-Save-Reattempt.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
ChunkMapDistance-CME.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Complete-resource-pack-API.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
Configurable-Alternative-LootPool-Luck-Formula.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Configurable-baby-zombie-movement-speed.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Configurable-Bed-Search-Radius.patch Ensure portal search radius is used when teleporting players (#2877) 2020-01-18 09:28:32 -08:00
Configurable-cactus-and-reed-natural-growth-heights.patch Compile fixes (#2732) 2019-12-12 19:45:00 +01:00
Configurable-Cartographer-Treasure-Maps.patch Ensure portal search radius is used when teleporting players (#2877) 2020-01-18 09:28:32 -08:00
Configurable-chance-of-villager-zombie-infection.patch Optimise ticklistserver (#2957) 2020-03-18 05:17:28 -07:00
Configurable-Chunk-Inhabited-Time.patch Remove entities from per-chunk list (Fixes #2918) 2020-01-31 16:09:56 +00:00
Configurable-connection-throttle-kick-message.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Configurable-container-update-tick-rate.patch Performance patches prerequisite (#2802) 2020-01-27 16:16:53 -08:00
Configurable-Disabling-Cat-Chest-Detection.patch Work on server patches 2019-12-11 00:56:03 +00:00
Configurable-end-credits.patch Performance patches prerequisite (#2802) 2020-01-27 16:16:53 -08:00
Configurable-fishing-time-ranges.patch Work on server patches 2019-12-11 00:56:03 +00:00
Configurable-flying-kick-messages.patch Patches 100-260 (#2729) 2019-12-12 00:43:22 +01:00
Configurable-Grass-Spread-Tick-Rate.patch Ensure portal search radius is used when teleporting players (#2877) 2020-01-18 09:28:32 -08:00
Configurable-inter-world-teleportation-safety.patch Updated Upstream (Bukkit/CraftBukkit) 2020-01-21 15:12:47 +00:00
Configurable-Keep-Spawn-Loaded-range-per-world.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Configurable-mob-spawner-tick-rate.patch Work on server patches 2019-12-11 00:56:03 +00:00
Configurable-Non-Player-Arrow-Despawn-Rate.patch Ensure portal search radius is used when teleporting players (#2877) 2020-01-18 09:28:32 -08:00
Configurable-packet-in-spam-threshold.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
Configurable-Player-Collision.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Configurable-projectile-relative-velocity.patch Ensure portal search radius is used when teleporting players (#2877) 2020-01-18 09:28:32 -08:00
Configurable-RCON-IP-address.patch More progress 2019-12-10 20:43:21 -06:00
Configurable-spawn-chances-for-skeleton-horses.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Configurable-speed-for-water-flowing-over-lava.patch Ensure portal search radius is used when teleporting players (#2877) 2020-01-18 09:28:32 -08:00
Configurable-sprint-interruption-on-attack.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Configurable-top-of-nether-void-damage.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Custom-replacement-for-eaten-items.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Default-loading-permissions.yml-before-plugins.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-02 11:53:48 +00:00
Disable-Explicit-Network-Manager-Flushing.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Disable-explosion-knockback.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Disable-ice-and-snow.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Disable-logger-prefix-for-various-plugins-bypassing-.patch Fix startup errors when double clicking jar (#2903) 2020-01-24 17:06:37 -06:00
Disable-Scoreboards-for-non-players-by-default.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Disable-spigot-tick-limiters.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Disable-thunder.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Do-less-work-if-we-have-a-custom-Bukkit-generator.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Do-not-let-armorstands-drown.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Do-not-load-chunks-for-Pathfinding.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Don-t-allow-digging-into-unloaded-chunks.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
Don-t-allow-entities-to-ride-themselves-572.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Don-t-call-getItemMeta-on-hasItemMeta.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Don-t-change-the-Entity-Random-seed-for-squids.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Don-t-check-ConvertSigns-boolean-every-sign-save.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
don-t-go-below-0-for-pickupDelay-breaks-picking-up-i.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Don-t-let-fishinghooks-use-portals.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Don-t-load-Chunks-from-Hoppers-and-other-things.patch Update no chunk loads for hoppers and double chests patch (#2777) 2020-01-09 22:11:19 -05:00
Don-t-lookup-game-profiles-that-have-no-UUID-and-no-.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Don-t-nest-if-we-don-t-need-to-when-cerealising-text.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Don-t-save-empty-scoreboard-teams-to-scoreboard.dat.patch Patches 100-260 (#2729) 2019-12-12 00:43:22 +01:00
Don-t-sleep-after-profile-lookups-if-not-needed.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Don-t-tick-Skulls-unused-code.patch Updated Upstream (CraftBukkit/Spigot) 2019-07-16 23:09:32 +01:00
Drop-falling-block-and-tnt-entities-at-the-specified.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Duplicate-UUID-Resolve-Option.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
EnderDragon-Events.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Enderman.teleportRandomly.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
EndermanAttackPlayerEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
EndermanEscapeEvent.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2019-12-17 22:39:07 +00:00
Enforce-Sync-Player-Saves.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Ensure-commands-are-not-ran-async.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Ensure-inv-drag-is-in-bounds.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Entity-AddTo-RemoveFrom-World-Events.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Entity-fromMobSpawner.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Entity-getEntitySpawnReason.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Entity-Jump-API.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Entity-Origin-API.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
EntityPathfindEvent.patch More progress 2019-12-10 20:43:21 -06:00
EntityRegainHealthEvent-isFastRegen-API.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
EntityShootBowEvent-consumeArrow-and-getArrowItem-AP.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
EntityTransformedEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Expand-Explosions-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Expand-World.spawnParticle-API-and-add-Builder.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
ExperienceOrbMergeEvent.patch Updated Upstream (CraftBukkit) 2020-01-14 21:43:50 +00:00
ExperienceOrbs-API-for-Reason-Source-Triggering-play.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Expose-attack-cooldown-methods-for-Player.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Expose-client-protocol-version-and-virtual-host.patch Updated Upstream (Bukkit/CraftBukkit) 2020-01-21 15:12:47 +00:00
Expose-server-CommandMap.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Expose-the-internal-current-tick.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Extend-Player-Interact-cancellation.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Faster-redstone-torch-rapid-clock-removal.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Fill-Profile-Property-Events.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Filter-bad-data-from-ArmorStand-and-SpawnEgg-items.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fire-BlockPistonRetractEvent-for-all-empty-pistons.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fire-EntityShootBowEvent-for-Illusioner.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fire-event-on-GS4-query.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Firework-API-s.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-AssertionError-when-player-hand-set-to-empty-typ.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
fix-blockstate-capture-undoing.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Fix-Cancelling-BlockPlaceEvent-triggering-physics.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Fix-CB-call-to-changed-postToMainThread-method.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Fix-client-rendering-skulls-from-same-user.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Fix-comparator-behavior-for-EntityPhanton-goal.patch Drop 0394-Fixed-MC-156852.patch (Fixes #2913) 2020-01-30 09:36:03 +00:00
Fix-CraftEntity-hashCode.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-CraftServer-isPrimaryThread-and-MinecraftServer-.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Fix-Custom-Shapeless-Custom-Crafting-Recipes.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-Double-World-Add-issues.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Fix-Dragon-Server-Crashes.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-exploit-that-allowed-colored-signs-to-be-created.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
Fix-issues-with-entity-loss-due-to-unloaded-chunks.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Fix-items-not-falling-correctly.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Fix-items-vanishing-through-end-portal.patch performance: Many Entity Activation Range Improvements 2020-03-29 22:26:44 -04:00
Fix-lag-from-explosions-processing-dead-entities.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-last-firework-in-stack-not-having-effects-when-d.patch Drop 0394-Fixed-MC-156852.patch (Fixes #2913) 2020-01-30 09:36:03 +00:00
Fix-MC-93764.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-MC-117075-TE-Unload-Lag-Spike.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Fix-MC-124320.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Fix-MC-158900.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-MC-161754.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-nether-portal-creation.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-NPE-when-getting-location-from-InventoryEnderChe.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-Old-Sign-Conversion.patch Patches 100-260 (#2729) 2019-12-12 00:43:22 +01:00
Fix-PlayerEditBookEvent.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Fix-reducedDebugInfo-not-initialized-on-client.patch More progress 2019-12-10 20:43:21 -06:00
Fix-sign-edit-memory-leak.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Fix-some-generation-concurrency-issues.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Fix-sounds-when-item-frames-are-modified-MC-123450.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-spawn-radius-being-treated-as-0.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Fix-spawning-of-hanging-entities-that-are-not-ItemFr.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Fix-SpongeAbsortEvent-handling.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-stuck-in-sneak-when-changing-worlds-MC-10657.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Fix-this-stupid-bullshit.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Fix-World-isChunkGenerated-calls.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Fix-zero-tick-instant-grow-farms-MC-113809.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Flag-to-disable-the-channel-limit.patch Do not send PlayerProfile info before initial server send 2020-02-22 14:13:29 +00:00
force-entity-dismount-during-teleportation.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Further-improve-server-tick-loop.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Generator-Settings.patch Ensure portal search radius is used when teleporting players (#2877) 2020-01-18 09:28:32 -08:00
getPlayerUniqueId-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Guard-against-serializing-mismatching-chunk-coordina.patch Guard against serializing mismatching chunk coordinate (#2844) 2020-01-11 22:32:44 -08:00
Handle-Excessive-Signs-in-Chunks-creating-too-large-.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Handle-Item-Meta-Inconsistencies.patch Updated Upstream (CraftBukkit) 2020-03-02 19:13:59 +00:00
Handle-Large-Packets-disconnecting-client.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
handle-NaN-health-absorb-values-and-repair-bad-data.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
handle-PacketPlayInKeepAlive-async.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
Handle-plugin-prefixes-using-Log4J-configuration.patch Fix startup errors when double clicking jar (#2903) 2020-01-24 17:06:37 -06:00
Here-s-Johnny.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Honor-EntityAgeable.ageLock.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Hook-into-CB-plugin-rewrites.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Ignore-Dead-Entities-in-entityList-iteration.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Implement-alternative-item-despawn-rate.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Implement-an-API-for-CanPlaceOn-and-CanDestroy-NBT-v.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Implement-CraftBlockSoundGroup.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Implement-ensureServerConversions-API.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Implement-EntityKnockbackByEntityEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Implement-EntityTeleportEndGatewayEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Implement-Expanded-ArmorStand-API.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Implement-extended-PaperServerListPingEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Implement-furnace-cook-speed-multiplier-API.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Implement-getI18NDisplayName.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Implement-getters-and-setters-for-EntityItem-owner-a.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
implement-optional-per-player-mob-spawns.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Implement-Paper-VersionChecker.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-01 15:20:54 +00:00
Implement-PlayerLocaleChangeEvent.patch Performance patches prerequisite (#2802) 2020-01-27 16:16:53 -08:00
Implement-PlayerPostRespawnEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Implement-World.getEntity-UUID-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
improve-CraftWorld-isChunkLoaded.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Improve-death-events.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Improve-Maps-in-item-frames-performance-and-bug-fixe.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Improve-the-Saddle-API-for-Horses.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Improved-Async-Task-Scheduler.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Include-Log4J2-SLF4J-implementation.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
incremental-chunk-saving.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Inventory-removeItemAnySlot.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
InventoryCloseEvent-Reason-API.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Item-canEntityPickup.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
ItemStack-getMaxItemUseDuration.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Lag-compensate-eating.patch Rebuild patches 2020-02-06 21:07:34 -06:00
Lazy-init-world-storage-in-CraftOfflinePlayer.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Limit-Client-Sign-length-more.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
Limit-lightning-strike-effect-distance.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
LivingEntity-Hand-Raised-Item-Use-API.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
LivingEntity-setKiller.patch Updated Upstream (Bukkit/CraftBukkit) 2020-02-25 18:57:15 +00:00
Log-other-thread-in-DataPaletteBlock-lock-failure.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
LootTable-API-Replenishable-Lootables-Feature.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Make-EnderDragon-implement-Mob.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Make-legacy-ping-handler-more-reliable.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Make-max-squid-spawn-height-configurable.patch Ensure portal search radius is used when teleporting players (#2877) 2020-01-18 09:28:32 -08:00
Make-player-data-saving-configurable.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Make-shield-blocking-delay-configurable.patch Updated Upstream (Bukkit/CraftBukkit) 2020-02-25 18:57:15 +00:00
Make-targetSize-more-aggressive-in-the-chunk-unload-.patch Performance patches prerequisite (#2802) 2020-01-27 16:16:53 -08:00
Make-the-default-permission-message-configurable.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Make-the-GUI-graph-fancier.patch Optimise ticklistserver (#2957) 2020-03-18 05:17:28 -07:00
Mark-chunk-dirty-anytime-entities-change-to-guarante.patch Remove entities from per-chunk list (Fixes #2918) 2020-01-31 16:09:56 +00:00
Mark-entities-as-being-ticked-when-notifying-navigat.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
MC-50319-Check-other-worlds-for-shooter-of-projectil.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
MC-111480-Start-Entity-ID-s-at-1.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
MC-114618-Fix-EntityAreaEffectCloud-from-going-negat.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
MC-135506-Experience-should-save-as-Integers.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
MC-145260-Fix-Whitelist-On-Off-inconsistency.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
MC-145656-Fix-Follow-Range-Initial-Target.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
MC-Dev-fixes.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
MC-Utils.patch Optimise ticklistserver (#2957) 2020-03-18 05:17:28 -07:00
Mob-Pathfinding-API.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Mob-Spawner-API-Enhancements.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
More-informative-vehicle-moved-wrongly-message.patch Patches 100-260 (#2729) 2019-12-12 00:43:22 +01:00
Ocelot-despawns-should-honor-nametags-and-leash.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
offset-item-frame-ticking.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
only-add-passanger-entities-once-from-spawners.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Only-count-Natural-Spawned-mobs-towards-natural-spaw.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Only-process-BlockPhysicsEvent-if-a-plugin-has-a-lis.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Only-refresh-abilities-if-needed.patch Updated Upstream (Bukkit/CraftBukkit) 2020-01-21 15:12:47 +00:00
Only-send-Dragon-Wither-Death-sounds-to-same-world.patch Patches 100-260 (#2729) 2019-12-12 00:43:22 +01:00
Optimise-BlockState-s-hashCode-equals.patch Patches 100-260 (#2729) 2019-12-12 00:43:22 +01:00
Optimise-Chunk-getFluid.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Optimise-getChunkAt-calls-for-loaded-chunks.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Optimise-IEntityAccess-getPlayerByUUID.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Optimise-random-block-ticking.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Optimise-removeQueue.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Optimise-TickListServer-by-rewriting-it.patch Fix memory leak in TickListServer (#3068) 2020-03-25 12:56:18 -07:00
Optimize-Biome-Mob-Lookups-for-Mob-Spawning.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Optimize-BlockPosition-helper-methods.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Optimize-call-to-getFluid-for-explosions.patch Drop 0394-Fixed-MC-156852.patch (Fixes #2913) 2020-01-30 09:36:03 +00:00
Optimize-Captured-TileEntity-Lookup.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Optimize-CraftBlockData-Creation.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Optimize-explosions.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Optimize-Hoppers.patch Drop 0394-Fixed-MC-156852.patch (Fixes #2913) 2020-01-30 09:36:03 +00:00
Optimize-isValidLocation-getType-and-getBlockData-fo.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Optimize-ItemStack.isEmpty.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Optimize-redstone-algorithm.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Optimize-RegistryID.c.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Optimize-RegistryMaterials.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Optimize-Server-World-Map.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Optimize-TileEntity-Ticking.patch Work on server patches 2019-12-11 00:56:03 +00:00
Optimize-UserCache-Thread-Safe.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Optimize-World-Time-Updates.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Optimize-World.isLoaded-BlockPosition-Z.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Option-for-maximum-exp-value-when-merging-orbs.patch Ensure portal search radius is used when teleporting players (#2877) 2020-01-18 09:28:32 -08:00
Option-to-prevent-armor-stands-from-doing-entity-loo.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Option-to-remove-corrupt-tile-entities.patch Remove entities from per-chunk list (Fixes #2918) 2020-01-31 16:09:56 +00:00
Option-to-use-vanilla-per-world-scoreboard-coloring-.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
Optional-TNT-doesn-t-move-in-water.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Paper-config-files.patch Indicate ticking status in entity list command (#2856) 2020-03-18 05:38:24 -07:00
Paper-Metrics.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Per-Player-View-Distance-API-placeholders.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Performance-improvement-for-Chunk.getEntities.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Player-affects-spawning-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Player-Tab-List-and-Title-APIs.patch Updated Upstream (Bukkit/CraftBukkit) 2020-01-21 15:12:47 +00:00
Player.setPlayerProfile-API.patch Do not send PlayerProfile info before initial server send 2020-02-22 14:13:29 +00:00
PlayerAdvancementCriterionGrantEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
PlayerAttemptPickupItemEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
PlayerDeathEvent-getItemsToKeep.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
PlayerDeathEvent-shouldDropExperience.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
PlayerElytraBoostEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
PlayerLaunchProjectileEvent.patch Drop 0394-Fixed-MC-156852.patch (Fixes #2913) 2020-01-30 09:36:03 +00:00
PlayerNaturallySpawnCreaturesEvent.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
PlayerPickupExperienceEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
PlayerPickupItemEvent-setFlyAtPlayer.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
PlayerReadyArrowEvent.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
PlayerTeleportEndGatewayEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
POM-Changes.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-01 15:20:54 +00:00
PreCreatureSpawnEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
PreSpawnerSpawnEvent.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Prevent-bees-loading-chunks-checking-hive-position.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Prevent-chunk-loading-from-Fluid-Flowing.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Prevent-consuming-the-wrong-itemstack.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Prevent-Enderman-from-loading-chunks.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Prevent-Fire-from-loading-chunks.patch Compile fixes (#2732) 2019-12-12 19:45:00 +01:00
Prevent-Frosted-Ice-from-loading-holding-chunks.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Prevent-logins-from-being-processed-when-the-player-.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Prevent-Mob-AI-Rules-from-Loading-Chunks.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Prevent-mob-spawning-from-loading-generating-chunks.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Prevent-Pathfinding-out-of-World-Border.patch Patches 100-260 (#2729) 2019-12-12 00:43:22 +01:00
Prevent-rayTrace-from-loading-chunks.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Prevent-Saving-Bad-entities-to-chunks.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch [CI-SKIP] rebuild patches 2020-01-18 17:58:05 +00:00
Prevent-teleporting-dead-entities.patch Optimise ticklistserver (#2957) 2020-03-18 05:17:28 -07:00
Prevent-tile-entity-and-entity-crashes.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Print-Error-details-when-failing-to-save-player-data.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Profile-Lookup-Events.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
ProfileWhitelistVerifyEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Properly-fix-item-duplication-bug.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
Properly-handle-async-calls-to-restart-the-server.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
provide-a-configurable-option-to-disable-creeper-lin.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Provide-E-TE-Chunk-count-stat-methods.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
RangedEntity-API.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Re-add-vanilla-entity-warnings-for-duplicates.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Re-track-players-that-dismount-from-other-players.patch Performance patches prerequisite (#2802) 2020-01-27 16:16:53 -08:00
Reduce-sync-loads.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Refresh-player-inventory-when-cancelling-PlayerInter.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
Remove-CraftScheduler-Async-Task-Debugger.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Remove-Debug-checks-from-DataBits.patch More progress 2019-12-10 20:43:21 -06:00
Remove-FishingHook-reference-on-Craft-Entity-removal.patch Patches 100-260 (#2729) 2019-12-12 00:43:22 +01:00
Remove-invalid-mob-spawner-tile-entities.patch Remove entities from per-chunk list (Fixes #2918) 2020-01-31 16:09:56 +00:00
Remove-Metadata-on-reload.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
remove-null-possibility-for-getServer-singleton.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Remove-unused-World-Tile-Entity-List.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Reset-players-airTicks-on-respawn.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Reset-spawner-timer-when-spawner-event-is-cancelled.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Restore-custom-InventoryHolder-support.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Restore-vanlla-default-mob-spawn-range.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
revert-serverside-behavior-of-keepalives.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Sanitise-RegionFileCache-and-make-configurable.patch More progress 2019-12-10 20:43:21 -06:00
Seed-based-feature-search.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Send-absolute-position-the-first-time-an-entity-is-s.patch Performance patches prerequisite (#2802) 2020-01-27 16:16:53 -08:00
Send-attack-SoundEffects-only-to-players-who-can-see.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Send-nearby-packets-from-world-player-list-not-serve.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-26 02:37:20 +00:00
Server-Tick-Events.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Set-Zombie-last-tick-at-start-of-drowning-process.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Shoulder-Entities-Release-API.patch Updated Upstream (CraftBukkit) 2020-01-25 01:22:52 +00:00
Show-blockstate-location-if-we-failed-to-read-it.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Show-Paper-in-client-crashes-server-lists-and-Mojang.patch Remove extraneous space from host info log message 2020-02-18 22:57:49 -06:00
SkeletonHorse-Additions.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Slime-Pathfinder-Events.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Speedup-BlockPos-by-fixing-inlining.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Store-counts-for-each-Entity-Block-Entity-Type.patch Remove entities from per-chunk list (Fixes #2918) 2020-01-31 16:09:56 +00:00
Store-reference-to-current-Chunk-for-Entity-and-Bloc.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
String-based-Action-Bar-API.patch Optimise ticklistserver (#2957) 2020-03-18 05:17:28 -07:00
Support-Overriding-World-Seeds.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
System-property-for-disabling-watchdoge.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Tameable-getOwnerUniqueId-API.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Timings-v2.patch Timings changes (#3044) 2020-03-18 23:03:32 -07:00
Toggleable-player-crits-helps-mitigate-hacked-client.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Tracking-Range-Improvements.patch Drop 0394-Fixed-MC-156852.patch (Fixes #2913) 2020-01-30 09:36:03 +00:00
Turtle-API.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Undead-horse-leashing.patch Ensure portal search radius is used when teleporting players (#2877) 2020-01-18 09:28:32 -08:00
Unset-Ignited-flag-on-cancel-of-Explosion-Event.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Update-entity-Metadata-for-all-tracked-players.patch Update upstream B/CB 2020-02-08 18:32:48 -06:00
Use-a-Queue-for-Queueing-Commands.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Use-a-Shared-Random-for-Entities.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-02-21 17:52:20 +00:00
Use-asynchronous-Log4j-2-loggers.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
use-CB-BlockState-implementations-for-captured-block.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Use-ChunkStatus-cache-when-saving-protochunks.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00
Use-ConcurrentHashMap-in-JsonList.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Use-getChunkIfLoadedImmediately-in-places.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Use-Log4j-IOStreams-to-redirect-System.out-err-to-lo.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-01-28 19:43:57 +00:00
Use-more-reasonable-thread-count-default-for-bootstr.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Use-proper-max-length-when-serialising-BungeeCord-te.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Use-TerminalConsoleAppender-for-console-improvements.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-03-10 11:01:15 +00:00
Use-UserCache-for-player-heads.patch Update upstream CB/S 2019-12-26 22:18:27 -05:00
Use-Vanilla-Minecart-Speeds.patch Stop stripping private use block Unicode from signs 2020-02-10 22:35:46 -06:00
Validate-tripwire-hook-placement-before-update.patch Optimise ticklistserver (#2957) 2020-03-18 05:17:28 -07:00
Vanished-players-don-t-have-rights.patch Pass fireworks through vanished players (#3021) 2020-03-18 14:58:50 +01:00
Vex-getSummoner-API.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Waving-banner-workaround.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
WitchConsumePotionEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
WitchReadyPotionEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
WitchThrowPotionEvent.patch 1.15.2 update (#2887) 2020-01-21 18:02:07 -08:00
Workaround-for-setting-passengers-on-players.patch Updated Upstream (Bukkit/CraftBukkit) 2020-01-21 15:12:47 +00:00
Workaround-for-vehicle-tracking-issue-on-disconnect.patch Drop Ignore-Missing-Recipes-in-RecipeBook-to-avoid-data-e.patch 2020-03-15 20:03:36 +00:00