Paper/Spigot-Server-Patches
Aikar 9fa6ba267c
Optimize Light Engine
Massive update to light to improve performance and chunk loading/generation.

1) Massive bit packing/unpacking optimizations and inlining.
  A lot of performance has to do with constant packing and unpacking of bits.
  We now inline a most bit operations, and re-use base x/y/z bits in many places.
  This helps with cpu level processing to just do all the math at once instead
  of having to jump in and out of function calls.

  This much logic also is likely over the JVM Inline limit for JIT too.
2) Applied a few of JellySquid's Phosphor mod optimizations such as
  - ensuring we don't notify neighbor chunks when neighbor chunk doesn't need to be notified
  - reduce hasLight checks in initializing light, and prob some more, they are tagged JellySquid where phosphor influence was used.
3) Optimize hot path accesses to getting updating chunk to have less branching
4) Optimize getBlock accesses to have less branching, and less unpacking
5) Have a separate urgent bucket for chunk light tasks. These tasks will always cut in line over non blocking light tasks.
6) Retain chunk priority while light tasks are enqueued. So if a task comes in at high priority but the queue is full
   of tasks already at a lower priority, before the task was simply added to the end. Now it can cut in line to the front.
   this applies for both urgent and non urgent tasks.
7) Buffer non urgent tasks even if queueUpdate is called multiple times to improve efficiency.
8) Fix NPE risk that crashes server in getting nibble data

Fixes #3489
Fixes #3363
2020-06-07 20:31:29 -04:00
..
0001-POM-Changes.patch Fix netty version to 50 and restore epoll native support 2020-05-24 13:07:53 -04:00
0002-Paper-config-files.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0003-MC-Dev-fixes.patch Optimize Villager Pathfinding - Massive Villager Improvement 2020-05-27 01:35:36 -04:00
0004-MC-Utils.patch Fix sounds when using worldedit regen command 2020-06-02 01:29:18 -04:00
0005-Paper-Metrics.patch
0006-Add-MinecraftKey-Information-to-Objects.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0007-Store-reference-to-current-Chunk-for-Entity-and-Bloc.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0008-Store-counts-for-each-Entity-Block-Entity-Type.patch Unload leaked Cached Chunks 2020-05-25 11:12:22 -04:00
0009-Timings-v2.patch Add more information to Timing Reports 2020-06-02 23:30:58 -04:00
0010-Configurable-cactus-and-reed-natural-growth-heights.patch
0011-Configurable-baby-zombie-movement-speed.patch
0012-Configurable-fishing-time-ranges.patch
0013-Allow-nerfed-mobs-to-jump-and-take-water-damage.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0014-Add-configurable-despawn-distances-for-living-entiti.patch
0015-Allow-for-toggling-of-spawn-chunks.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0016-Drop-falling-block-and-tnt-entities-at-the-specified.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0017-Show-Paper-in-client-crashes-server-lists-and-Mojang.patch Foundational work for Future Memory usage improvements 2020-05-16 21:38:19 -04:00
0018-Implement-Paper-VersionChecker.patch Add more information to Timing Reports 2020-06-02 23:30:58 -04:00
0019-Add-version-history-to-version-command.patch
0020-Player-affects-spawning-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0021-Remove-invalid-mob-spawner-tile-entities.patch Unload leaked Cached Chunks 2020-05-25 11:12:22 -04:00
0022-Optimize-TileEntity-Ticking.patch
0023-Further-improve-server-tick-loop.patch Foundational work for Future Memory usage improvements 2020-05-16 21:38:19 -04:00
0024-Only-refresh-abilities-if-needed.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0025-Entity-Origin-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0026-Prevent-tile-entity-and-entity-crashes.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0027-Configurable-top-of-nether-void-damage.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0028-Check-online-mode-before-converting-and-renaming-pla.patch
0029-Always-tick-falling-blocks.patch
0030-Configurable-end-credits.patch
0031-Fix-lag-from-explosions-processing-dead-entities.patch
0032-Optimize-explosions.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0033-Disable-explosion-knockback.patch
0034-Disable-thunder.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0035-Disable-ice-and-snow.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0036-Configurable-mob-spawner-tick-rate.patch
0037-Send-absolute-position-the-first-time-an-entity-is-s.patch
0038-Add-BeaconEffectEvent.patch
0039-Configurable-container-update-tick-rate.patch
0040-Use-UserCache-for-player-heads.patch
0041-Disable-spigot-tick-limiters.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0042-Add-PlayerInitialSpawnEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0043-Configurable-Disabling-Cat-Chest-Detection.patch
0044-Ensure-commands-are-not-ran-async.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0045-All-chunks-are-slime-spawn-chunks-toggle.patch
0046-Expose-server-CommandMap.patch
0047-Be-a-bit-more-informative-in-maxHealth-exception.patch
0048-Player-Tab-List-and-Title-APIs.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0049-Ensure-inv-drag-is-in-bounds.patch
0050-Change-implementation-of-tile-entity-removal-list.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0051-Add-configurable-portal-search-radius.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0052-Add-velocity-warnings.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0053-Configurable-inter-world-teleportation-safety.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0054-Add-exception-reporting-event.patch Unload leaked Cached Chunks 2020-05-25 11:12:22 -04:00
0055-Don-t-nest-if-we-don-t-need-to-when-cerealising-text.patch
0056-Disable-Scoreboards-for-non-players-by-default.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0057-Add-methods-for-working-with-arrows-stuck-in-living-.patch
0058-Complete-resource-pack-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0059-Chunk-Save-Reattempt.patch
0060-Default-loading-permissions.yml-before-plugins.patch
0061-Allow-Reloading-of-Custom-Permissions.patch
0062-Remove-Metadata-on-reload.patch
0063-Undead-horse-leashing.patch
0064-Handle-Item-Meta-Inconsistencies.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0065-Configurable-Non-Player-Arrow-Despawn-Rate.patch
0066-Add-World-Util-Methods.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0067-Custom-replacement-for-eaten-items.patch
0068-handle-NaN-health-absorb-values-and-repair-bad-data.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0069-Waving-banner-workaround.patch
0070-Use-a-Shared-Random-for-Entities.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0071-Configurable-spawn-chances-for-skeleton-horses.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0072-Optimize-isValidLocation-getType-and-getBlockData-fo.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0073-Only-process-BlockPhysicsEvent-if-a-plugin-has-a-lis.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0074-Entity-AddTo-RemoveFrom-World-Events.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-05-12 01:27:07 -04:00
0075-Configurable-Chunk-Inhabited-Time.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0076-EntityPathfindEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0077-Sanitise-RegionFileCache-and-make-configurable.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0078-Do-not-load-chunks-for-Pathfinding.patch Fix ChunkCache .getXIfLoaded to use the local chunks in the cache 2020-05-09 14:58:08 -04:00
0079-Add-PlayerUseUnknownEntityEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0080-Fix-reducedDebugInfo-not-initialized-on-client.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0081-Configurable-Grass-Spread-Tick-Rate.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0082-Fix-Cancelling-BlockPlaceEvent-triggering-physics.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0083-Remove-Debug-checks-from-DataBits.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0084-Option-to-use-vanilla-per-world-scoreboard-coloring-.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0085-Workaround-for-setting-passengers-on-players.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0086-Remove-unused-World-Tile-Entity-List.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0087-Don-t-tick-Skulls-unused-code.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0088-Configurable-Player-Collision.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0089-Add-handshake-event-to-allow-plugins-to-handle-clien.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0090-Configurable-RCON-IP-address.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0091-Prevent-Fire-from-loading-chunks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0092-Implement-PlayerLocaleChangeEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0093-EntityRegainHealthEvent-isFastRegen-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0094-Add-ability-to-configure-frosted_ice-properties.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0095-remove-null-possibility-for-getServer-singleton.patch Foundational work for Future Memory usage improvements 2020-05-16 21:38:19 -04:00
0096-Improve-Maps-in-item-frames-performance-and-bug-fixe.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-05-12 01:27:07 -04:00
0097-LootTable-API-Replenishable-Lootables-Feature.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0098-Don-t-save-empty-scoreboard-teams-to-scoreboard.dat.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0099-System-property-for-disabling-watchdoge.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0100-Optimize-UserCache-Thread-Safe.patch Foundational work for Future Memory usage improvements 2020-05-16 21:38:19 -04:00
0101-Avoid-blocking-on-Network-Manager-creation.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0102-Optional-TNT-doesn-t-move-in-water.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0103-Faster-redstone-torch-rapid-clock-removal.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0104-Add-server-name-parameter.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0105-Only-send-Dragon-Wither-Death-sounds-to-same-world.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0106-Fix-Double-World-Add-issues.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0107-Fix-Old-Sign-Conversion.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0108-Don-t-lookup-game-profiles-that-have-no-UUID-and-no-.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0109-More-informative-vehicle-moved-wrongly-message.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0110-Add-setting-for-proxy-online-mode-status.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0111-Optimise-BlockState-s-hashCode-equals.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0112-Configurable-packet-in-spam-threshold.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0113-Configurable-flying-kick-messages.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0114-Chunk-registration-fixes.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0115-Remove-FishingHook-reference-on-Craft-Entity-removal.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0116-Auto-fix-bad-Y-levels-on-player-login.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0117-Option-to-remove-corrupt-tile-entities.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0118-Add-EntityZapEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0119-Filter-bad-data-from-ArmorStand-and-SpawnEgg-items.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0120-Cache-user-authenticator-threads.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0121-Optimise-removeQueue.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0122-Allow-Reloading-of-Command-Aliases.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0123-Add-source-to-PlayerExpChangeEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0124-Don-t-let-fishinghooks-use-portals.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0125-Add-ProjectileCollideEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0126-Prevent-Pathfinding-out-of-World-Border.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0127-Optimize-World.isLoaded-BlockPosition-Z.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0128-Bound-Treasure-Maps-to-World-Border.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0129-Configurable-Cartographer-Treasure-Maps.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0130-Optimize-ItemStack.isEmpty.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0131-Add-API-methods-to-control-if-armour-stands-can-move.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0132-Properly-fix-item-duplication-bug.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0133-String-based-Action-Bar-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0134-Firework-API-s.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0135-PlayerTeleportEndGatewayEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0136-Provide-E-TE-Chunk-count-stat-methods.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0137-Enforce-Sync-Player-Saves.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0138-Don-t-allow-entities-to-ride-themselves-572.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0139-ExperienceOrbs-API-for-Reason-Source-Triggering-play.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0140-Cap-Entity-Collisions.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0141-Remove-CraftScheduler-Async-Task-Debugger.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0142-Make-targetSize-more-aggressive-in-the-chunk-unload-.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0143-Do-not-let-armorstands-drown.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0144-Properly-handle-async-calls-to-restart-the-server.patch Foundational work for Future Memory usage improvements 2020-05-16 21:38:19 -04:00
0145-Add-system-property-to-disable-book-size-limits.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0146-Add-option-to-make-parrots-stay-on-shoulders-despite.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0147-Add-configuration-option-to-prevent-player-names-fro.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0148-Use-TerminalConsoleAppender-for-console-improvements.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0149-provide-a-configurable-option-to-disable-creeper-lin.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0150-Item-canEntityPickup.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0151-PlayerPickupItemEvent-setFlyAtPlayer.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0152-PlayerAttemptPickupItemEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0153-Add-UnknownCommandEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0154-Basic-PlayerProfile-API.patch More Improvements to Chunks 2020-05-22 23:52:56 -04:00
0155-Shoulder-Entities-Release-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0156-Profile-Lookup-Events.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0157-Block-player-logins-during-server-shutdown.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0158-Entity-fromMobSpawner.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0159-Improve-the-Saddle-API-for-Horses.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0160-Implement-ensureServerConversions-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0161-Implement-getI18NDisplayName.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0162-ProfileWhitelistVerifyEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0163-Fix-this-stupid-bullshit.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0164-Ocelot-despawns-should-honor-nametags-and-leash.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0165-Reset-spawner-timer-when-spawner-event-is-cancelled.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0166-Fix-MC-117075-TE-Unload-Lag-Spike.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0167-Allow-specifying-a-custom-authentication-servers-dow.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0168-LivingEntity-setKiller.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0169-Use-Log4j-IOStreams-to-redirect-System.out-err-to-lo.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0170-Handle-plugin-prefixes-using-Log4J-configuration.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0171-Include-Log4J2-SLF4J-implementation.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0172-Improve-Log4J-Configuration-Plugin-Loggers.patch Update Log4J Configuration file to stop truncating stack traces 2020-05-22 23:52:56 -04:00
0173-Add-PlayerJumpEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0174-handle-PacketPlayInKeepAlive-async.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0175-Expose-client-protocol-version-and-virtual-host.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0176-revert-serverside-behavior-of-keepalives.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0177-Send-attack-SoundEffects-only-to-players-who-can-see.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0178-Option-for-maximum-exp-value-when-merging-orbs.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0179-Add-PlayerArmorChangeEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0180-Prevent-logins-from-being-processed-when-the-player-.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0181-use-CB-BlockState-implementations-for-captured-block.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0182-API-to-get-a-BlockState-without-a-snapshot.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0183-AsyncTabCompleteEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0184-Avoid-NPE-in-PathfinderGoalTempt.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0185-PlayerPickupExperienceEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0186-ExperienceOrbMergeEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0187-Ability-to-apply-mending-to-XP-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0188-Make-max-squid-spawn-height-configurable.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0189-PreCreatureSpawnEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0190-PlayerNaturallySpawnCreaturesEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0191-Add-setPlayerProfile-API-for-Skulls.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0192-Fill-Profile-Property-Events.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0193-PlayerAdvancementCriterionGrantEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0194-Add-ArmorStand-Item-Meta.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0195-Extend-Player-Interact-cancellation.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0196-Tameable-getOwnerUniqueId-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0197-Toggleable-player-crits-helps-mitigate-hacked-client.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0198-Fix-NPE-when-getting-location-from-InventoryEnderChe.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0199-Prevent-Frosted-Ice-from-loading-holding-chunks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0200-Disable-Explicit-Network-Manager-Flushing.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0201-Implement-extended-PaperServerListPingEvent.patch Foundational work for Future Memory usage improvements 2020-05-16 21:38:19 -04:00
0202-Improved-Async-Task-Scheduler.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0203-Ability-to-change-PlayerProfile-in-AsyncPreLoginEven.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0204-Player.setPlayerProfile-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0205-Fix-Dragon-Server-Crashes.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0206-getPlayerUniqueId-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0207-Make-player-data-saving-configurable.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0208-Make-legacy-ping-handler-more-reliable.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0209-Call-PaperServerListPingEvent-for-legacy-pings.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0210-Flag-to-disable-the-channel-limit.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0211-Add-method-to-open-already-placed-sign.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0212-Configurable-sprint-interruption-on-attack.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0213-Fix-exploit-that-allowed-colored-signs-to-be-created.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0214-EndermanEscapeEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0215-Enderman.teleportRandomly.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0216-Block-Enderpearl-Travel-Exploit.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0217-Expand-World.spawnParticle-API-and-add-Builder.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-05-12 01:27:07 -04:00
0218-EndermanAttackPlayerEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0219-WitchConsumePotionEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0220-WitchThrowPotionEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0221-Allow-spawning-Item-entities-with-World.spawnEntity.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0222-WitchReadyPotionEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0223-ItemStack-getMaxItemUseDuration.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0224-Implement-EntityTeleportEndGatewayEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0225-Unset-Ignited-flag-on-cancel-of-Explosion-Event.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0226-Fix-CraftEntity-hashCode.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0227-Configurable-Alternative-LootPool-Luck-Formula.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0228-Print-Error-details-when-failing-to-save-player-data.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0229-Make-shield-blocking-delay-configurable.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0230-EntityShootBowEvent-consumeArrow-and-getArrowItem-AP.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0231-PlayerReadyArrowEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0232-Fire-EntityShootBowEvent-for-Illusioner.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0233-Implement-EntityKnockbackByEntityEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0234-Expand-Explosions-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0235-LivingEntity-Hand-Raised-Item-Use-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0236-RangedEntity-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0237-Add-config-to-disable-ender-dragon-legacy-check.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0238-Implement-World.getEntity-UUID-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0239-InventoryCloseEvent-Reason-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0240-Configurable-Bed-Search-Radius.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0241-Vex-getSummoner-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0242-Refresh-player-inventory-when-cancelling-PlayerInter.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0243-Don-t-change-the-Entity-Random-seed-for-squids.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0244-Re-add-vanilla-entity-warnings-for-duplicates.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0245-Avoid-item-merge-if-stack-size-above-max-stack-size.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0246-Use-asynchronous-Log4j-2-loggers.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0247-add-more-information-to-Entity.toString.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0248-Add-Debug-Entities-option-to-debug-dupe-uuid-issues.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0249-EnderDragon-Events.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0250-PlayerElytraBoostEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0251-Improve-BlockPosition-inlining.patch Optimize Villager Pathfinding - Massive Villager Improvement 2020-05-27 01:35:36 -04:00
0252-Optimize-RegistryID.c.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0253-Option-to-prevent-armor-stands-from-doing-entity-loo.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0254-Vanished-players-don-t-have-rights.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0255-Mark-chunk-dirty-anytime-entities-change-to-guarante.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0256-Add-some-Debug-to-Chunk-Entity-slices.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0257-EntityTransformedEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0258-SkeletonHorse-Additions.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0259-Prevent-Saving-Bad-entities-to-chunks.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-05-12 01:27:07 -04:00
0260-Don-t-call-getItemMeta-on-hasItemMeta.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0261-Ignore-Dead-Entities-in-entityList-iteration.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0262-Implement-Expanded-ArmorStand-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0263-AnvilDamageEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0264-Add-TNTPrimeEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0265-Break-up-and-make-tab-spam-limits-configurable.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0266-Add-hand-to-bucket-events.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0267-MC-135506-Experience-should-save-as-Integers.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0268-Fix-client-rendering-skulls-from-same-user.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0269-Add-Early-Warning-Feature-to-WatchDog.patch Foundational work for Future Memory usage improvements 2020-05-16 21:38:19 -04:00
0270-Make-EnderDragon-implement-Mob.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0271-Use-ConcurrentHashMap-in-JsonList.patch Fix NPE when temp ip bans expire (#3373) 2020-05-16 23:26:49 -04:00
0272-Use-a-Queue-for-Queueing-Commands.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0273-Ability-to-get-Tile-Entities-from-a-chunk-without-sn.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0274-Allow-disabling-armour-stand-ticking.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0275-Optimize-BlockPosition-helper-methods.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0276-Send-nearby-packets-from-world-player-list-not-serve.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0277-Restore-vanlla-default-mob-spawn-range.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0278-Optimize-CraftBlockData-Creation.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0279-Fix-MC-124320.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0280-Slime-Pathfinder-Events.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0281-Configurable-speed-for-water-flowing-over-lava.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0282-Optimize-RegistryMaterials.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0283-Add-PhantomPreSpawnEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0284-Add-More-Creeper-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0285-Inventory-removeItemAnySlot.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0286-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0287-Add-ray-tracing-methods-to-LivingEntity.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0288-Expose-attack-cooldown-methods-for-Player.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0289-Improve-death-events.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0290-Allow-chests-to-be-placed-with-NBT-data.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0291-Mob-Pathfinding-API.patch Expand Pathfinding API with more options 2020-05-16 23:02:48 -04:00
0292-Prevent-chunk-loading-from-Fluid-Flowing.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0293-Implement-an-API-for-CanPlaceOn-and-CanDestroy-NBT-v.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0294-Prevent-Mob-AI-Rules-from-Loading-Chunks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0295-Prevent-mob-spawning-from-loading-generating-chunks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0296-Optimize-Biome-Mob-Lookups-for-Mob-Spawning.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0297-Implement-furnace-cook-speed-multiplier-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0298-Support-Overriding-World-Seeds.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0299-Optimize-Server-World-Map.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0300-PreSpawnerSpawnEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0301-Catch-JsonParseException-in-Entity-and-TE-names.patch More Improvements to Chunks 2020-05-22 23:52:56 -04:00
0302-Avoid-dimension-id-collisions.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0303-Honor-EntityAgeable.ageLock.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0304-Configurable-connection-throttle-kick-message.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0305-Hook-into-CB-plugin-rewrites.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0306-Allow-setting-the-vex-s-summoner.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0307-Add-sun-related-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0308-Check-Drowned-for-Villager-Aggression-Config.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0309-Here-s-Johnny.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0310-Turtle-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0311-Limit-lightning-strike-effect-distance.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-05-12 01:27:07 -04:00
0312-MC-50319-Check-other-worlds-for-shooter-of-projectil.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0313-Call-player-spectator-target-events-and-improve-impl.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0314-Add-Velocity-IP-Forwarding-Support.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0315-Add-more-Witch-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0316-Fix-MC-93764.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0317-Add-option-to-prevent-players-from-moving-into-unloa.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0318-Reset-players-airTicks-on-respawn.patch Handle CraftPlayer#setSpectatorTarget better 2020-05-14 18:05:00 -05:00
0319-Don-t-sleep-after-profile-lookups-if-not-needed.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0320-Improve-Server-Thread-Pool-and-Thread-Priorities.patch Improve Thread Pool usage to allow single threads for single cpu servers 2020-06-02 02:19:07 -04:00
0321-Optimize-World-Time-Updates.patch Foundational work for Future Memory usage improvements 2020-05-16 21:38:19 -04:00
0322-Restore-custom-InventoryHolder-support.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0323-Use-Vanilla-Minecart-Speeds.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0324-Fix-SpongeAbsortEvent-handling.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0325-Don-t-allow-digging-into-unloaded-chunks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0326-Optimize-redstone-algorithm.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0327-force-entity-dismount-during-teleportation.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0328-Book-Size-Limits.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0329-Make-the-default-permission-message-configurable.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0330-Add-more-Zombie-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0331-Prevent-rayTrace-from-loading-chunks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0332-Handle-Large-Packets-disconnecting-client.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0333-Lazy-init-world-storage-in-CraftOfflinePlayer.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0334-Add-PlayerConnectionCloseEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0335-Prevent-Enderman-from-loading-chunks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0336-Add-APIs-to-replace-OfflinePlayer-getLastPlayed.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0337-Fix-PlayerEditBookEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0338-Workaround-for-vehicle-tracking-issue-on-disconnect.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0339-Fire-BlockPistonRetractEvent-for-all-empty-pistons.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0340-Block-Entity-remove-from-being-called-on-Players.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0341-BlockDestroyEvent.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0342-Fix-Custom-Shapeless-Custom-Crafting-Recipes.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0343-Fix-sign-edit-memory-leak.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0344-Limit-Client-Sign-length-more.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0345-Don-t-check-ConvertSigns-boolean-every-sign-save.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0346-Optimize-Network-Manager-and-add-advanced-packet-sup.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0347-Handle-Oversized-Tile-Entities-in-chunks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0348-MC-145260-Fix-Whitelist-On-Off-inconsistency.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0349-Set-Zombie-last-tick-at-start-of-drowning-process.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0350-Allow-Saving-of-Oversized-Chunks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0351-Call-WhitelistToggleEvent-when-whitelist-is-toggled.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0352-Add-LivingEntity-getTargetEntity.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0353-Use-proper-max-length-when-serialising-BungeeCord-te.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0354-Entity-getEntitySpawnReason.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0355-Update-entity-Metadata-for-all-tracked-players.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0356-Fire-event-on-GS4-query.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0357-Implement-PlayerPostRespawnEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0358-don-t-go-below-0-for-pickupDelay-breaks-picking-up-i.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0359-Implement-getters-and-setters-for-EntityItem-owner-a.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0360-Server-Tick-Events.patch Foundational work for Future Memory usage improvements 2020-05-16 21:38:19 -04:00
0361-PlayerDeathEvent-getItemsToKeep.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0362-Optimize-Captured-TileEntity-Lookup.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0363-Add-Heightmap-API.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0364-Mob-Spawner-API-Enhancements.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0365-Per-Player-View-Distance-API-placeholders.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0366-Fix-CB-call-to-changed-postToMainThread-method.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0367-Fix-sounds-when-item-frames-are-modified-MC-123450.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0368-Fix-CraftServer-isPrimaryThread-and-MinecraftServer-.patch Improve Thread Pool usage to allow single threads for single cpu servers 2020-06-02 02:19:07 -04:00
0369-Fix-issues-with-entity-loss-due-to-unloaded-chunks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0370-Duplicate-UUID-Resolve-Option.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0371-improve-CraftWorld-isChunkLoaded.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0372-Configurable-Keep-Spawn-Loaded-range-per-world.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0373-Fix-some-generation-concurrency-issues.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0374-MC-114618-Fix-EntityAreaEffectCloud-from-going-negat.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0375-ChunkMapDistance-CME.patch Many improvements to chunk prioritization and bug fixes 2020-05-20 05:13:01 -04:00
0376-Implement-CraftBlockSoundGroup.patch Fix SoundEffectType#getHitSound OBFHELPER 2020-06-07 09:51:00 +01:00
0377-Chunk-debug-command.patch More Improvements to Chunks 2020-05-22 23:52:56 -04:00
0378-incremental-chunk-saving.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0379-Catch-exceptions-from-dispenser-entity-spawns.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0380-Fix-World-isChunkGenerated-calls.patch Many improvements to chunk prioritization and bug fixes 2020-05-20 05:13:01 -04:00
0381-Show-blockstate-location-if-we-failed-to-read-it.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0382-Synchronize-DataPaletteBlock-instead-of-ReentrantLoc.patch Synchronize DataPaletteBlock instead of ReentrantLock 2020-05-29 20:36:42 -04:00
0383-Use-ChunkStatus-cache-when-saving-protochunks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0384-Anti-Xray.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0385-Only-count-Natural-Spawned-mobs-towards-natural-spaw.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0386-Configurable-projectile-relative-velocity.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0387-Mark-entities-as-being-ticked-when-notifying-navigat.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-05-12 01:27:07 -04:00
0388-offset-item-frame-ticking.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0389-Avoid-hopper-searches-if-there-are-no-items.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0390-Asynchronous-chunk-IO-and-loading.patch Ensure VillagerTrades doesn't load async - fixes #3495 2020-06-03 00:00:17 -04:00
0391-Use-getChunkIfLoadedImmediately-in-places.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0392-Reduce-sync-loads.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0393-Implement-alternative-item-despawn-rate.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0394-Do-less-work-if-we-have-a-custom-Bukkit-generator.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0395-Fix-MC-158900.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0396-implement-optional-per-player-mob-spawns.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0397-Prevent-consuming-the-wrong-itemstack.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0398-only-add-passanger-entities-once-from-spawners.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0399-Fix-nether-portal-creation.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0400-Generator-Settings.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0401-Fix-zero-tick-instant-grow-farms-MC-113809.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0402-Fix-MC-161754.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0403-Performance-improvement-for-Chunk.getEntities.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0404-Fix-spawning-of-hanging-entities-that-are-not-ItemFr.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0405-Expose-the-internal-current-tick.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0406-Fix-stuck-in-sneak-when-changing-worlds-MC-10657.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0407-Add-option-to-disable-pillager-patrols.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0408-Fix-AssertionError-when-player-hand-set-to-empty-typ.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0409-PlayerLaunchProjectileEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0410-Add-CraftMagicNumbers.isSupportedApiVersion.patch Add more information to Timing Reports 2020-06-02 23:30:58 -04:00
0411-Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0412-Fix-spawn-radius-being-treated-as-0.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0413-MC-145656-Fix-Follow-Range-Initial-Target.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0414-Optimize-Hoppers.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0415-PlayerDeathEvent-shouldDropExperience.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0416-Prevent-bees-loading-chunks-checking-hive-position.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0417-Don-t-load-Chunks-from-Hoppers-and-other-things.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0418-Guard-against-serializing-mismatching-chunk-coordina.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0419-Optimise-IEntityAccess-getPlayerByUUID.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0420-Fix-items-not-falling-correctly.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0421-Lag-compensate-eating.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0422-Optimize-call-to-getFluid-for-explosions.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0423-Fix-last-firework-in-stack-not-having-effects-when-d.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0424-Entity-Activation-Range-2.0.patch Add Villager Tasks to EAR inactive tick to keep behavior 2020-05-30 04:54:40 -04:00
0425-Add-effect-to-block-break-naturally.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-05-12 01:27:07 -04:00
0426-Tracking-Range-Improvements.patch Cleanup async chunks (#3456) 2020-05-28 19:34:58 -04:00
0427-Fix-comparator-behavior-for-EntityPhanton-goal.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0428-Fix-items-vanishing-through-end-portal.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0429-Seed-based-feature-search.patch Improve implementation of chunk leak clean to not run as often 2020-05-25 21:42:53 -04:00
0430-Bees-get-gravity-in-void.-Fixes-MC-167279.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0431-Optimise-getChunkAt-calls-for-loaded-chunks.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0432-Be-more-tolerant-of-invalid-attributes.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0433-Allow-overriding-the-java-version-check.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0434-Add-ThrownEggHatchEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0435-Optimise-random-block-ticking.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0436-Entity-Jump-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0437-Add-option-to-nerf-pigmen-from-nether-portals.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0438-Make-the-GUI-graph-fancier.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0439-Backport-fix-for-MC-167561.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0440-add-hand-to-BlockMultiPlaceEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0441-Prevent-teleporting-dead-entities.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0442-Validate-tripwire-hook-placement-before-update.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0443-Add-option-to-allow-iron-golems-to-spawn-in-air.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0444-Configurable-chance-of-villager-zombie-infection.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0445-Optimise-Chunk-getFluid.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0446-Optimise-TickListServer-by-rewriting-it.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0447-Pillager-patrol-spawn-settings-and-per-player-option.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0448-Ensure-Entity-is-never-double-registered.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-05-12 01:27:07 -04:00
0449-Fix-unregistering-entities-from-unloading-chunks.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) 2020-05-12 01:27:07 -04:00
0450-Remote-Connections-shouldn-t-hold-up-shutdown.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0451-Do-not-allow-bees-to-load-chunks-for-beehives.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0452-Prevent-Double-PlayerChunkMap-adds-crashing-server.patch Cleanup async chunks (#3456) 2020-05-28 19:34:58 -04:00
0453-Optimize-Collision-to-not-load-chunks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0454-Don-t-tick-dead-players.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0455-Dead-Player-s-shouldn-t-be-able-to-move.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0456-Optimize-PlayerChunkMap-memory-use-for-visibleChunks.patch Cleanup async chunks (#3456) 2020-05-28 19:34:58 -04:00
0457-Don-t-load-chunks-when-attempting-to-unload-a-chunk.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0458-Increase-Light-Queue-Size.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0459-Mid-Tick-Chunk-Tasks-Speed-up-processing-of-chunk-lo.patch Many fixes and improvements to chunk prioritization 2020-05-22 01:03:42 -04:00
0460-Don-t-move-existing-players-to-world-spawn.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0461-Add-tick-times-API-and-mspt-command.patch Ensure VillagerTrades doesn't load async - fixes #3495 2020-06-03 00:00:17 -04:00
0462-Expose-MinecraftServer-isRunning.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0463-Add-Raw-Byte-ItemStack-Serialization.patch Add more information to Timing Reports 2020-06-02 23:30:58 -04:00
0464-Remove-streams-from-Mob-AI-System.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0465-Delay-unsafe-actions-until-after-entity-ticking-is-d.patch Implement Chunk Priority / Urgency System for Chunks 2020-05-19 04:09:37 -04:00
0466-Async-command-map-building.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0467-Improved-Watchdog-Support.patch Improve Thread Pool usage to allow single threads for single cpu servers 2020-06-02 02:19:07 -04:00
0468-Optimize-Pathfinding.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0469-Port-20w15a-Villager-AI-optimizations-DROP-1.16.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0470-Reduce-Either-Optional-allocation.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0471-Remove-streams-from-PairedQueue.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0472-Remove-streams-from-MinecraftKey.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0473-Reduce-memory-footprint-of-NBTTagCompound.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0474-Prevent-opening-inventories-when-frozen.patch Handle CraftPlayer#setSpectatorTarget better 2020-05-14 18:05:00 -05:00
0475-Optimise-ArraySetSorted-removeIf.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0476-Don-t-run-entity-collision-code-if-not-needed.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0477-Optimise-entity-hard-collision-checking.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0478-Optimize-ChunkProviderServer-s-chunk-level-checking-.patch Many fixes and improvements to chunk prioritization 2020-05-22 01:03:42 -04:00
0479-Restrict-vanilla-teleport-command-to-valid-locations.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0480-Implement-Player-Client-Options-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0481-Fix-Chunk-Post-Processing-deadlock-risk.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0482-Don-t-crash-if-player-is-attempted-to-be-removed-fro.patch Many improvements to chunk prioritization and bug fixes 2020-05-20 05:13:01 -04:00
0483-Broadcast-join-message-to-console.patch Implement Chunk Priority / Urgency System for Chunks 2020-05-19 04:09:37 -04:00
0484-Fix-Longstanding-Broken-behavior-of-PlayerJoinEvent.patch Cleanup async chunks (#3456) 2020-05-28 19:34:58 -04:00
0485-Load-Chunks-for-Login-Asynchronously.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0486-Move-player-to-spawn-point-if-spawn-in-unloaded-worl.patch Fix collision checks on spawning hanging entities and null on async chunk loads 2020-05-14 05:05:13 -04:00
0487-Allow-sleeping-players-to-float.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0488-Add-PlayerAttackEntityCooldownResetEvent.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0489-Allow-multiple-callbacks-to-schedule-for-Callback-Ex.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0490-Don-t-fire-BlockFade-on-worldgen-threads.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0491-Add-phantom-creative-and-insomniac-controls.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0492-Fix-numerous-item-duplication-issues-and-teleport-is.patch Drop Leads from nether portals - Fixes #3226 2020-05-16 22:58:11 -04:00
0493-Implement-Brigadier-Mojang-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0494-Villager-Restocks-API.patch Add Villager Tasks to EAR inactive tick to keep behavior 2020-05-30 04:54:40 -04:00
0495-Validate-PickItem-Packet-and-kick-for-invalid.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0496-Expose-game-version.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0497-Sync-position-on-teleportation.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0498-Optimize-Voxel-Shape-Merging.patch Implement JellySquid's Entity Collision optimisations patch 2020-05-09 19:19:18 -04:00
0499-Cleanup-Region-Files-Direct-Memory-on-close.patch Updated Upstream (Bukkit/CraftBukkit) 2020-05-06 06:05:22 -04:00
0500-Set-cap-on-JDK-per-thread-native-byte-buffer-cache.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0501-Implement-Mob-Goal-API.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0502-Use-distance-map-to-optimise-entity-tracker.patch Cleanup async chunks (#3456) 2020-05-28 19:34:58 -04:00
0503-Optimize-isOutsideRange-to-use-distance-maps.patch Cleanup async chunks (#3456) 2020-05-28 19:34:58 -04:00
0504-Stop-copy-on-write-operations-for-updating-light-dat.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0505-No-Tick-view-distance-implementation.patch Add more information to Timing Reports 2020-06-02 23:30:58 -04:00
0506-Add-villager-reputation-API.patch Add Villager Tasks to EAR inactive tick to keep behavior 2020-05-30 04:54:40 -04:00
0507-Fix-Light-Command.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0508-Fix-CraftServer.unloadWorld-Leak.patch Don't unregister the primary dimensions on world unload 2020-05-27 00:15:57 -04:00
0509-Fix-PotionEffect-ignores-icon-flag.patch Optimize Hoppers - Major performance improvement 2020-05-11 03:42:32 -04:00
0510-Optimize-brigadier-child-sorting-performance.patch Optimize Hoppers - Major performance improvement 2020-05-11 03:42:32 -04:00
0511-MC-183249-Don-t-generate-Carving-Masks-BitSet-unless.patch Optimize Hoppers - Major performance improvement 2020-05-11 03:42:32 -04:00
0512-Don-t-toString-block-unless-actually-showing-the-mes.patch Optimize Hoppers - Major performance improvement 2020-05-11 03:42:32 -04:00
0513-Implement-JellySquid-s-Entity-Collision-optimisation.patch Fix collision checks on spawning hanging entities and null on async chunk loads 2020-05-14 05:05:13 -04:00
0514-Remove-some-Streams-usage-in-Entity-Collision.patch Fix collision checks on spawning hanging entities and null on async chunk loads 2020-05-14 05:05:13 -04:00
0515-Ensure-Entity-AABB-s-are-never-invalid.patch Implement Chunk Priority / Urgency System for Chunks 2020-05-19 04:09:37 -04:00
0516-Potential-bed-API.patch Optimize Hoppers - Major performance improvement 2020-05-11 03:42:32 -04:00
0517-Wait-for-Async-Tasks-during-shutdown.patch Implement Chunk Priority / Urgency System for Chunks 2020-05-19 04:09:37 -04:00
0518-Optimize-WorldBorder-collision-checks-and-air.patch Implement Chunk Priority / Urgency System for Chunks 2020-05-19 04:09:37 -04:00
0519-Ensure-EntityRaider-respects-game-and-entity-rules-f.patch Optimize Hoppers - Major performance improvement 2020-05-11 03:42:32 -04:00
0520-Optimize-Pathfinder-Remove-Streams-Optimized-collect.patch Fix Pathfinding and obscure glitchy buggy 0 tick farms 2020-05-11 21:18:11 -04:00
0521-Protect-Bedrock-and-End-Portal-Frames-from-being-des.patch Workaround for some hacky environments that mess up things 2020-05-23 22:27:37 -04:00
0522-Optimize-NibbleArray-to-use-pooled-buffers.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0523-Reduce-MutableInt-allocations-from-light-engine.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0524-Reduce-allocation-of-Vec3D-by-entity-tracker.patch Cleanup async chunks (#3456) 2020-05-28 19:34:58 -04:00
0525-Ensure-safe-gateway-teleport.patch Check portal restrictions when entering end gateways 2020-05-16 23:28:59 -04:00
0526-Add-permission-for-command-blocks.patch Updated Upstream (Bukkit/CraftBukkit) 2020-06-02 01:29:18 -04:00
0527-Add-option-for-console-having-all-permissions.patch Implement Chunk Priority / Urgency System for Chunks 2020-05-19 04:09:37 -04:00
0528-Workaround-for-Client-Lag-Spikes-MC-162253.patch Cleanup async chunks (#3456) 2020-05-28 19:34:58 -04:00
0529-Implement-Chunk-Priority-Urgency-System-for-Chunks.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0530-Fix-Non-Full-Status-Chunk-NBT-Memory-Leak.patch Fix Non Full Status Chunk NBT Memory Leak 2020-05-23 01:40:27 -04:00
0531-Optimize-sending-packets-to-nearby-locations-sounds-.patch Workaround for really evil plugins breaking sounds 2020-05-27 01:00:43 -04:00
0532-Optimize-Villagers.patch Drop remove leaked chunk patch - causing many issues 2020-05-29 03:32:13 -04:00
0533-Improve-Chunk-Status-Transition-Speed.patch Boost light task priority to ensure it doesnt hold up chunk loads 2020-06-03 01:46:09 -04:00
0534-Fix-villager-trading-demand-MC-163962.patch Fix villager trading demand MC-163962 (#3498) 2020-06-07 14:41:32 -04:00
0535-Maps-shouldn-t-load-chunks.patch Maps shouldn't load chunks (#3518) 2020-06-07 16:57:52 -04:00
0536-Use-seed-based-lookup-for-Treasure-Maps-Fixes-lag-fr.patch Use seed based lookup for Treasure Maps - Fixes lag from carto/sunken maps 2020-06-07 19:28:58 -04:00
0537-Optimize-Bit-Operations-by-inlining.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00
0538-Optimize-Light-Engine.patch Optimize Light Engine 2020-06-07 20:31:29 -04:00