Paper/Spigot-Server-Patches
Aikar fcf89e852e
Improve mid tick chunk loading, Fix Oversleep, other improvements
Process loads outside of any canSleep check. Original intent was to
only apply those restrictions to generations but realized I had some
checks higher up the call chain.

Reworked the back off strategy to just run every 1 millisecond per world,
and to apply the per tick limit to generations only.

This guarantees that your chunk will load with at most around 1ms delay.

Additionally, fire midTick processing in a few more places, notably the
oversleep section so we can keep processing loads here too which has
a large up to 50ms window...

Speaking of oversleep, we had a bug in our implementation changes for
Timings that caused oversleep to not sleep the correct amount.

Because we now moved it into the NEXT tick instead of THIS tick, the
value of nextTick had already been increased to +50ms, resulting in
the risk of sleeping more than it should, but, more importantly, this
caused every task that was trying to NOT run during oversleep to actually
run during oversleep.

This is now fixed.

Another small tweak is to the /tps command, to no longer show the star when
TPS is right at 20.

Due to ineffeciencies in the sleep precision, TPS is commonly 20.02.
This causes the star to show up almost constantly, so now only show it if
we actually hit a real "catchup".

This commit also improves the changes to the CallbackExecutor, in that
it now is also recursion safe.

It was possible that the executor could run tasks out of desired order
if the executor task scheduled more executor tasks.

We solve this by ensuring new additions do not enter the currently iterated queue.

Each depth level will have its own queue.

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