Paper/Spigot-Server-Patches
Mariell Hoversholm c02c22fde5 fix: legacy component serialisation was wiped out
When merging 4e958e229f, nobody caught the
fact we removed the component serialisation of legacy BungeeCord Chat
API components in the PacketPlayOutTitle class.

Test plugin code:

```kotlin
class LegacyMessageCommand : BaseCommand() {
    override fun register(manager: PaperCommandManager<CommandSender>) {
        manager.command(manager.commandBuilder("legacymsg")
            .sender<Player>()
            .handler {
                val component = ComponentBuilder("Test")
                    .color(ChatColor.DARK_RED)
                    .bold(true)
                    .append(" message")
                    .bold(false)
                    .color(ChatColor.of("#f8a8a8"))
                    .event(
                        HoverEvent(
                            HoverEvent.Action.SHOW_TEXT,
                            Text(
                                ComponentBuilder("Test hover")
                                    .color(ChatColor.AQUA)
                                    .underlined(true)
                                    .create()
                            )
                        )
                    )
                    .event(
                        ClickEvent(
                            ClickEvent.Action.SUGGEST_COMMAND,
                            "/legacymsg"
                        )
                    )
                    .create()
                it.sender.sendMessage(*component)
                it.sender.sendActionBar(*component)
                it.sender.sendTitle(
                    Title.builder()
                        .title(component)
                        .subtitle(component)
                        .fadeIn(40)
                        .stay(60)
                        .fadeOut(40)
                        .build()
                )
            })
    }
}
```

Fixes GH-5271.
2021-02-27 12:46:57 +01:00
..
0001-POM-Changes.patch
0002-Paper-config-files.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0003-MC-Dev-fixes.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0004-MC-Utils.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0005-Paper-Metrics.patch
0006-Add-MinecraftKey-Information-to-Objects.patch
0007-Store-reference-to-current-Chunk-for-Entity-and-Bloc.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0008-Store-counts-for-each-Entity-Block-Entity-Type.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0009-Timings-v2.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0010-Adventure.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0011-Configurable-cactus-bamboo-and-reed-growth-heights.patch
0012-Configurable-baby-zombie-movement-speed.patch
0013-Configurable-fishing-time-ranges.patch
0014-Allow-nerfed-mobs-to-jump-and-take-water-damage.patch
0015-Add-configurable-despawn-distances-for-living-entiti.patch
0016-Allow-for-toggling-of-spawn-chunks.patch
0017-Drop-falling-block-and-tnt-entities-at-the-specified.patch
0018-Show-Paper-in-client-crashes-server-lists-and-Mojang.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0019-Implement-Paper-VersionChecker.patch
0020-Add-version-history-to-version-command.patch
0021-Player-affects-spawning-API.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0022-Remove-invalid-mob-spawner-tile-entities.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0023-Optimize-TileEntity-Ticking.patch
0024-Further-improve-server-tick-loop.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0025-Only-refresh-abilities-if-needed.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0026-Entity-Origin-API.patch
0027-Prevent-tile-entity-and-entity-crashes.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0028-Configurable-top-of-nether-void-damage.patch
0029-Check-online-mode-before-converting-and-renaming-pla.patch
0030-Always-tick-falling-blocks.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0031-Configurable-end-credits.patch
0032-Fix-lag-from-explosions-processing-dead-entities.patch
0033-Optimize-explosions.patch
0034-Disable-explosion-knockback.patch
0035-Disable-thunder.patch
0036-Disable-ice-and-snow.patch
0037-Configurable-mob-spawner-tick-rate.patch
0038-Send-absolute-position-the-first-time-an-entity-is-s.patch
0039-Add-BeaconEffectEvent.patch
0040-Configurable-container-update-tick-rate.patch
0041-Use-UserCache-for-player-heads.patch
0042-Disable-spigot-tick-limiters.patch
0043-Add-PlayerInitialSpawnEvent.patch
0044-Configurable-Disabling-Cat-Chest-Detection.patch
0045-Ensure-commands-are-not-ran-async.patch fix #5224 2021-02-22 10:24:44 -08:00
0046-All-chunks-are-slime-spawn-chunks-toggle.patch
0047-Expose-server-CommandMap.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0048-Be-a-bit-more-informative-in-maxHealth-exception.patch
0049-Player-Tab-List-and-Title-APIs.patch fix: legacy component serialisation was wiped out 2021-02-27 12:46:57 +01:00
0050-Ensure-inv-drag-is-in-bounds.patch
0051-Change-implementation-of-tile-entity-removal-list.patch
0052-Add-configurable-portal-search-radius.patch
0053-Add-velocity-warnings.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0054-Configurable-inter-world-teleportation-safety.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0055-Add-exception-reporting-event.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0056-Don-t-nest-if-we-don-t-need-to-when-cerealising-text.patch
0057-Disable-Scoreboards-for-non-players-by-default.patch
0058-Add-methods-for-working-with-arrows-stuck-in-living-.patch
0059-Complete-resource-pack-API.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0060-Chunk-Save-Reattempt.patch
0061-Default-loading-permissions.yml-before-plugins.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0062-Allow-Reloading-of-Custom-Permissions.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0063-Remove-Metadata-on-reload.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0064-Handle-Item-Meta-Inconsistencies.patch
0065-Configurable-Non-Player-Arrow-Despawn-Rate.patch
0066-Add-World-Util-Methods.patch
0067-Custom-replacement-for-eaten-items.patch
0068-handle-NaN-health-absorb-values-and-repair-bad-data.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0069-Use-a-Shared-Random-for-Entities.patch
0070-Configurable-spawn-chances-for-skeleton-horses.patch
0071-Optimize-isValidLocation-getType-and-getBlockData-fo.patch
0072-Only-process-BlockPhysicsEvent-if-a-plugin-has-a-lis.patch
0073-Entity-AddTo-RemoveFrom-World-Events.patch
0074-Configurable-Chunk-Inhabited-Time.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0075-EntityPathfindEvent.patch
0076-Sanitise-RegionFileCache-and-make-configurable.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0077-Do-not-load-chunks-for-Pathfinding.patch
0078-Add-PlayerUseUnknownEntityEvent.patch fix #5224 2021-02-22 10:24:44 -08:00
0079-Fix-reducedDebugInfo-not-initialized-on-client.patch
0080-Configurable-Grass-Spread-Tick-Rate.patch
0081-Fix-Cancelling-BlockPlaceEvent-triggering-physics.patch
0082-Optimize-DataBits.patch
0083-Option-to-use-vanilla-per-world-scoreboard-coloring-.patch Replace usages of LegacyComponentSerializer.legacySection() in Paper-Server with PaperAdventure.LEGACY_SECTION_UXRC (#5233) 2021-02-23 05:45:09 -08:00
0084-Workaround-for-setting-passengers-on-players.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0085-Remove-unused-World-Tile-Entity-List.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0086-Don-t-tick-Skulls-unused-code.patch
0087-Configurable-Player-Collision.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0088-Add-handshake-event-to-allow-plugins-to-handle-clien.patch
0089-Configurable-RCON-IP-address.patch
0090-Prevent-Fire-from-loading-chunks-wrongly-spread.patch
0091-Implement-PlayerLocaleChangeEvent.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0092-EntityRegainHealthEvent-isFastRegen-API.patch
0093-Add-ability-to-configure-frosted_ice-properties.patch
0094-remove-null-possibility-for-getServer-singleton.patch
0095-Improve-Maps-in-item-frames-performance-and-bug-fixe.patch
0096-LootTable-API-Replenishable-Lootables-Feature.patch
0097-Don-t-save-empty-scoreboard-teams-to-scoreboard.dat.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0098-System-property-for-disabling-watchdoge.patch
0099-Optimize-UserCache-Thread-Safe.patch
0100-Avoid-blocking-on-Network-Manager-creation.patch
0101-Optional-TNT-doesn-t-move-in-water.patch
0102-Faster-redstone-torch-rapid-clock-removal.patch
0103-Add-server-name-parameter.patch
0104-Only-send-Dragon-Wither-Death-sounds-to-same-world.patch
0105-Fix-Double-World-Add-issues.patch
0106-Fix-Old-Sign-Conversion.patch
0107-Don-t-lookup-game-profiles-that-have-no-UUID-and-no-.patch
0108-Add-setting-for-proxy-online-mode-status.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0109-Optimise-BlockState-s-hashCode-equals.patch
0110-Configurable-packet-in-spam-threshold.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0111-Configurable-flying-kick-messages.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0112-Chunk-registration-fixes.patch
0113-Remove-FishingHook-reference-on-Craft-Entity-removal.patch
0114-Auto-fix-bad-Y-levels-on-player-login.patch
0115-Option-to-remove-corrupt-tile-entities.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0116-Add-EntityZapEvent.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0117-Filter-bad-data-from-ArmorStand-and-SpawnEgg-items.patch
0118-Cache-user-authenticator-threads.patch
0119-Optimise-removeQueue.patch
0120-Allow-Reloading-of-Command-Aliases.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0121-Add-source-to-PlayerExpChangeEvent.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0122-Don-t-let-fishinghooks-use-portals.patch
0123-Add-ProjectileCollideEvent.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0124-Prevent-Pathfinding-out-of-World-Border.patch
0125-Optimize-World.isLoaded-BlockPosition-Z.patch
0126-Bound-Treasure-Maps-to-World-Border.patch
0127-Configurable-Cartographer-Treasure-Maps.patch
0128-Optimize-ItemStack.isEmpty.patch
0129-Add-API-methods-to-control-if-armour-stands-can-move.patch
0130-Properly-fix-item-duplication-bug.patch fix #5224 2021-02-22 10:24:44 -08:00
0131-String-based-Action-Bar-API.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0132-Firework-API-s.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0133-PlayerTeleportEndGatewayEvent.patch
0134-Provide-E-TE-Chunk-count-stat-methods.patch
0135-Enforce-Sync-Player-Saves.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0136-Don-t-allow-entities-to-ride-themselves-572.patch
0137-ExperienceOrbs-API-for-Reason-Source-Triggering-play.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0138-Cap-Entity-Collisions.patch
0139-Remove-CraftScheduler-Async-Task-Debugger.patch
0140-Make-targetSize-more-aggressive-in-the-chunk-unload-.patch
0141-Do-not-let-armorstands-drown.patch
0142-Properly-handle-async-calls-to-restart-the-server.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0143-Add-system-property-to-disable-book-size-limits.patch Replace usages of LegacyComponentSerializer.legacySection() in Paper-Server with PaperAdventure.LEGACY_SECTION_UXRC (#5233) 2021-02-23 05:45:09 -08:00
0144-Add-option-to-make-parrots-stay-on-shoulders-despite.patch fix #5224 2021-02-22 10:24:44 -08:00
0145-Add-configuration-option-to-prevent-player-names-fro.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0146-Use-TerminalConsoleAppender-for-console-improvements.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0147-provide-a-configurable-option-to-disable-creeper-lin.patch
0148-Item-canEntityPickup.patch
0149-PlayerPickupItemEvent-setFlyAtPlayer.patch
0150-PlayerAttemptPickupItemEvent.patch
0151-Add-UnknownCommandEvent.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0152-Basic-PlayerProfile-API.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0153-Shoulder-Entities-Release-API.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0154-Profile-Lookup-Events.patch
0155-Block-player-logins-during-server-shutdown.patch
0156-Entity-fromMobSpawner.patch
0157-Improve-the-Saddle-API-for-Horses.patch
0158-Implement-ensureServerConversions-API.patch
0159-Implement-getI18NDisplayName.patch
0160-ProfileWhitelistVerifyEvent.patch Replace usages of LegacyComponentSerializer.legacySection() in Paper-Server with PaperAdventure.LEGACY_SECTION_UXRC (#5233) 2021-02-23 05:45:09 -08:00
0161-Fix-this-stupid-bullshit.patch
0162-Ocelot-despawns-should-honor-nametags-and-leash.patch
0163-Reset-spawner-timer-when-spawner-event-is-cancelled.patch
0164-Fix-MC-117075-TE-Unload-Lag-Spike.patch
0165-Allow-specifying-a-custom-authentication-servers-dow.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0166-LivingEntity-setKiller.patch
0167-Handle-plugin-prefixes-using-Log4J-configuration.patch
0168-Include-Log4J2-SLF4J-implementation.patch
0169-Improve-Log4J-Configuration-Plugin-Loggers.patch
0170-Add-PlayerJumpEvent.patch fix #5224 2021-02-22 10:24:44 -08:00
0171-handle-PacketPlayInKeepAlive-async.patch fix #5224 2021-02-22 10:24:44 -08:00
0172-Expose-client-protocol-version-and-virtual-host.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0173-revert-serverside-behavior-of-keepalives.patch
0174-Send-attack-SoundEffects-only-to-players-who-can-see.patch
0175-Option-for-maximum-exp-value-when-merging-orbs.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0176-Add-PlayerArmorChangeEvent.patch
0177-Prevent-logins-from-being-processed-when-the-player-.patch
0178-use-CB-BlockState-implementations-for-captured-block.patch
0179-API-to-get-a-BlockState-without-a-snapshot.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0180-AsyncTabCompleteEvent.patch fix #5224 2021-02-22 10:24:44 -08:00
0181-Avoid-NPE-in-PathfinderGoalTempt.patch
0182-PlayerPickupExperienceEvent.patch
0183-ExperienceOrbMergeEvent.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0184-Ability-to-apply-mending-to-XP-API.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0185-Make-max-squid-spawn-height-configurable.patch
0186-PreCreatureSpawnEvent.patch
0187-PlayerNaturallySpawnCreaturesEvent.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0188-Add-setPlayerProfile-API-for-Skulls.patch
0189-Fill-Profile-Property-Events.patch
0190-PlayerAdvancementCriterionGrantEvent.patch
0191-Add-ArmorStand-Item-Meta.patch
0192-Extend-Player-Interact-cancellation.patch
0193-Tameable-getOwnerUniqueId-API.patch
0194-Toggleable-player-crits-helps-mitigate-hacked-client.patch
0195-Prevent-Frosted-Ice-from-loading-holding-chunks.patch
0196-Disable-Explicit-Network-Manager-Flushing.patch
0197-Implement-extended-PaperServerListPingEvent.patch fix #5214 2021-02-22 01:53:53 -08:00
0198-Improved-Async-Task-Scheduler.patch
0199-Ability-to-change-PlayerProfile-in-AsyncPreLoginEven.patch
0200-Player.setPlayerProfile-API.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0201-Fix-Dragon-Server-Crashes.patch
0202-getPlayerUniqueId-API.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0203-Make-player-data-saving-configurable.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0204-Make-legacy-ping-handler-more-reliable.patch
0205-Call-PaperServerListPingEvent-for-legacy-pings.patch
0206-Flag-to-disable-the-channel-limit.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0207-Add-method-to-open-already-placed-sign.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0208-Configurable-sprint-interruption-on-attack.patch
0209-Fix-exploit-that-allowed-colored-signs-to-be-created.patch fix #5224 2021-02-22 10:24:44 -08:00
0210-EndermanEscapeEvent.patch
0211-Enderman.teleportRandomly.patch
0212-Block-Enderpearl-Travel-Exploit.patch
0213-Expand-World.spawnParticle-API-and-add-Builder.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0214-EndermanAttackPlayerEvent.patch
0215-WitchConsumePotionEvent.patch
0216-WitchThrowPotionEvent.patch
0217-Allow-spawning-Item-entities-with-World.spawnEntity.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0218-WitchReadyPotionEvent.patch
0219-ItemStack-getMaxItemUseDuration.patch
0220-Implement-EntityTeleportEndGatewayEvent.patch
0221-Unset-Ignited-flag-on-cancel-of-Explosion-Event.patch
0222-Fix-CraftEntity-hashCode.patch
0223-Configurable-Alternative-LootPool-Luck-Formula.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0224-Print-Error-details-when-failing-to-save-player-data.patch
0225-Make-shield-blocking-delay-configurable.patch
0226-Improve-EntityShootBowEvent.patch
0227-PlayerReadyArrowEvent.patch
0228-Implement-EntityKnockbackByEntityEvent.patch
0229-Expand-Explosions-API.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0230-LivingEntity-Hand-Raised-Item-Use-API.patch
0231-RangedEntity-API.patch
0232-Add-config-to-disable-ender-dragon-legacy-check.patch
0233-Implement-World.getEntity-UUID-API.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0234-InventoryCloseEvent-Reason-API.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0235-Vex-getSummoner-API.patch
0236-Refresh-player-inventory-when-cancelling-PlayerInter.patch fix #5224 2021-02-22 10:24:44 -08:00
0237-Don-t-change-the-Entity-Random-seed-for-squids.patch
0238-Re-add-vanilla-entity-warnings-for-duplicates.patch
0239-Avoid-item-merge-if-stack-size-above-max-stack-size.patch
0240-Use-asynchronous-Log4j-2-loggers.patch
0241-add-more-information-to-Entity.toString.patch
0242-Add-Debug-Entities-option-to-debug-dupe-uuid-issues.patch
0243-EnderDragon-Events.patch
0244-PlayerElytraBoostEvent.patch
0245-Improve-BlockPosition-inlining.patch
0246-Optimize-RegistryID.c.patch
0247-Option-to-prevent-armor-stands-from-doing-entity-loo.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0248-Vanished-players-don-t-have-rights.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0249-Mark-chunk-dirty-anytime-entities-change-to-guarante.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0250-Add-some-Debug-to-Chunk-Entity-slices.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0251-SkeletonHorse-Additions.patch
0252-Prevent-Saving-Bad-entities-to-chunks.patch
0253-Don-t-call-getItemMeta-on-hasItemMeta.patch
0254-Ignore-Dead-Entities-in-entityList-iteration.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0255-Implement-Expanded-ArmorStand-API.patch
0256-AnvilDamageEvent.patch
0257-Add-TNTPrimeEvent.patch
0258-Break-up-and-make-tab-spam-limits-configurable.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0259-Add-hand-to-bucket-events.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0260-MC-135506-Experience-should-save-as-Integers.patch
0261-Fix-client-rendering-skulls-from-same-user.patch fix: legacy component serialisation was wiped out 2021-02-27 12:46:57 +01:00
0262-Add-Early-Warning-Feature-to-WatchDog.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0263-Make-EnderDragon-implement-Mob.patch
0264-Use-ConcurrentHashMap-in-JsonList.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0265-Use-a-Queue-for-Queueing-Commands.patch
0266-Ability-to-get-Tile-Entities-from-a-chunk-without-sn.patch
0267-Allow-disabling-armour-stand-ticking.patch
0268-Optimize-BlockPosition-helper-methods.patch
0269-Restore-vanlla-default-mob-spawn-range.patch
0270-Slime-Pathfinder-Events.patch
0271-Configurable-speed-for-water-flowing-over-lava.patch
0272-Optimize-CraftBlockData-Creation.patch
0273-Optimize-RegistryMaterials.patch
0274-Add-PhantomPreSpawnEvent.patch
0275-Add-More-Creeper-API.patch
0276-Inventory-removeItemAnySlot.patch
0277-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch
0278-Add-ray-tracing-methods-to-LivingEntity.patch
0279-Expose-attack-cooldown-methods-for-Player.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0280-Improve-death-events.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0281-Allow-chests-to-be-placed-with-NBT-data.patch
0282-Mob-Pathfinding-API.patch
0283-Prevent-chunk-loading-from-Fluid-Flowing.patch
0284-Implement-an-API-for-CanPlaceOn-and-CanDestroy-NBT-v.patch
0285-Prevent-Mob-AI-Rules-from-Loading-Chunks.patch
0286-Prevent-mob-spawning-from-loading-generating-chunks.patch
0287-Optimize-Biome-Mob-Lookups-for-Mob-Spawning.patch
0288-Implement-furnace-cook-speed-multiplier-API.patch
0289-PreSpawnerSpawnEvent.patch
0290-Catch-JsonParseException-in-Entity-and-TE-names.patch
0291-Honor-EntityAgeable.ageLock.patch
0292-Configurable-connection-throttle-kick-message.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0293-Hook-into-CB-plugin-rewrites.patch
0294-Allow-setting-the-vex-s-summoner.patch
0295-Add-sun-related-API.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0296-Turtle-API.patch
0297-MC-50319-Check-other-worlds-for-shooter-of-projectil.patch
0298-Call-player-spectator-target-events-and-improve-impl.patch fix #5224 2021-02-22 10:24:44 -08:00
0299-Add-Velocity-IP-Forwarding-Support.patch fix: legacy component serialisation was wiped out 2021-02-27 12:46:57 +01:00
0300-Add-more-Witch-API.patch
0301-Check-Drowned-for-Villager-Aggression-Config.patch
0302-Here-s-Johnny.patch
0303-Add-option-to-prevent-players-from-moving-into-unloa.patch fix #5224 2021-02-22 10:24:44 -08:00
0304-Reset-players-airTicks-on-respawn.patch
0305-Don-t-sleep-after-profile-lookups-if-not-needed.patch
0306-Improve-Server-Thread-Pool-and-Thread-Priorities.patch
0307-Optimize-World-Time-Updates.patch
0308-Restore-custom-InventoryHolder-support.patch
0309-Use-Vanilla-Minecart-Speeds.patch
0310-Fix-SpongeAbsortEvent-handling.patch
0311-Don-t-allow-digging-into-unloaded-chunks.patch fix #5224 2021-02-22 10:24:44 -08:00
0312-Book-Size-Limits.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0313-Make-the-default-permission-message-configurable.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0314-Prevent-rayTrace-from-loading-chunks.patch
0315-Handle-Large-Packets-disconnecting-client.patch
0316-force-entity-dismount-during-teleportation.patch
0317-Add-more-Zombie-API.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0318-Add-PlayerConnectionCloseEvent.patch
0319-Prevent-Enderman-from-loading-chunks.patch
0320-Add-APIs-to-replace-OfflinePlayer-getLastPlayed.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0321-Workaround-for-vehicle-tracking-issue-on-disconnect.patch
0322-Fire-BlockPistonRetractEvent-for-all-empty-pistons.patch
0323-Block-Entity-remove-from-being-called-on-Players.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0324-BlockDestroyEvent.patch
0325-Fix-Custom-Shapeless-Custom-Crafting-Recipes.patch
0326-Fix-sign-edit-memory-leak.patch fix #5224 2021-02-22 10:24:44 -08:00
0327-Limit-Client-Sign-length-more.patch fix #5224 2021-02-22 10:24:44 -08:00
0328-Don-t-check-ConvertSigns-boolean-every-sign-save.patch
0329-Optimize-Network-Manager-and-add-advanced-packet-sup.patch
0330-Handle-Oversized-Tile-Entities-in-chunks.patch
0331-MC-145260-Fix-Whitelist-On-Off-inconsistency.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0332-Set-Zombie-last-tick-at-start-of-drowning-process.patch
0333-Allow-Saving-of-Oversized-Chunks.patch
0334-Call-WhitelistToggleEvent-when-whitelist-is-toggled.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0335-Add-LivingEntity-getTargetEntity.patch
0336-Use-proper-max-length-when-serialising-BungeeCord-te.patch
0337-Entity-getEntitySpawnReason.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0338-Update-entity-Metadata-for-all-tracked-players.patch fix #5224 2021-02-22 10:24:44 -08:00
0339-Implement-PlayerPostRespawnEvent.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0340-don-t-go-below-0-for-pickupDelay-breaks-picking-up-i.patch
0341-Server-Tick-Events.patch
0342-PlayerDeathEvent-getItemsToKeep.patch
0343-Optimize-Captured-TileEntity-Lookup.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0344-Add-Heightmap-API.patch
0345-Mob-Spawner-API-Enhancements.patch
0346-Per-Player-View-Distance-API-placeholders.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0347-Fix-CB-call-to-changed-postToMainThread-method.patch fix #5224 2021-02-22 10:24:44 -08:00
0348-Fix-sounds-when-item-frames-are-modified-MC-123450.patch
0349-Fix-CraftServer-isPrimaryThread-and-MinecraftServer-.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0350-Fix-issues-with-entity-loss-due-to-unloaded-chunks.patch
0351-Duplicate-UUID-Resolve-Option.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0352-improve-CraftWorld-isChunkLoaded.patch
0353-Configurable-Keep-Spawn-Loaded-range-per-world.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0354-MC-114618-Fix-EntityAreaEffectCloud-from-going-negat.patch
0355-ChunkMapDistance-CME.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0356-Implement-CraftBlockSoundGroup.patch
0357-Chunk-debug-command.patch
0358-Catch-exceptions-from-dispenser-entity-spawns.patch
0359-Fix-World-isChunkGenerated-calls.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0360-Show-blockstate-location-if-we-failed-to-read-it.patch
0361-Synchronize-DataPaletteBlock-instead-of-ReentrantLoc.patch
0362-incremental-chunk-saving.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0363-Anti-Xray.patch
0364-Only-count-Natural-Spawned-mobs-towards-natural-spaw.patch
0365-Configurable-projectile-relative-velocity.patch
0366-Mark-entities-as-being-ticked-when-notifying-navigat.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0367-offset-item-frame-ticking.patch
0368-Avoid-hopper-searches-if-there-are-no-items.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0369-Asynchronous-chunk-IO-and-loading.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0370-Use-getChunkIfLoadedImmediately-in-places.patch fix #5224 2021-02-22 10:24:44 -08:00
0371-Reduce-sync-loads.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0372-Implement-alternative-item-despawn-rate.patch
0373-Do-less-work-if-we-have-a-custom-Bukkit-generator.patch
0374-Fix-MC-158900.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0375-implement-optional-per-player-mob-spawns.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0376-Prevent-consuming-the-wrong-itemstack.patch
0377-Fix-nether-portal-creation.patch
0378-Generator-Settings.patch
0379-Fix-MC-161754.patch
0380-Performance-improvement-for-Chunk.getEntities.patch
0381-Fix-spawning-of-hanging-entities-that-are-not-ItemFr.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0382-Expose-the-internal-current-tick.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0383-Fix-stuck-in-sneak-when-changing-worlds-MC-10657.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0384-Add-option-to-disable-pillager-patrols.patch
0385-Fix-AssertionError-when-player-hand-set-to-empty-typ.patch fix #5224 2021-02-22 10:24:44 -08:00
0386-PlayerLaunchProjectileEvent.patch
0387-Add-CraftMagicNumbers.isSupportedApiVersion.patch
0388-Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch
0389-MC-145656-Fix-Follow-Range-Initial-Target.patch
0390-Optimize-Hoppers.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0391-PlayerDeathEvent-shouldDropExperience.patch
0392-Prevent-bees-loading-chunks-checking-hive-position.patch
0393-Don-t-load-Chunks-from-Hoppers-and-other-things.patch
0394-Guard-against-serializing-mismatching-chunk-coordina.patch
0395-Optimise-IEntityAccess-getPlayerByUUID.patch
0396-Fix-items-not-falling-correctly.patch
0397-Lag-compensate-eating.patch
0398-Optimize-call-to-getFluid-for-explosions.patch
0399-Fix-last-firework-in-stack-not-having-effects-when-d.patch
0400-Add-effect-to-block-break-naturally.patch
0401-Tracking-Range-Improvements.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0402-Entity-Activation-Range-2.0.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0403-Fix-items-vanishing-through-end-portal.patch
0404-Bees-get-gravity-in-void.-Fixes-MC-167279.patch
0405-Optimise-getChunkAt-calls-for-loaded-chunks.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0406-Allow-overriding-the-java-version-check.patch
0407-Add-ThrownEggHatchEvent.patch
0408-Optimise-random-block-ticking.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0409-Entity-Jump-API.patch
0410-Add-option-to-nerf-pigmen-from-nether-portals.patch
0411-Make-the-GUI-graph-fancier.patch
0412-add-hand-to-BlockMultiPlaceEvent.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0413-Prevent-teleporting-dead-entities.patch fix #5224 2021-02-22 10:24:44 -08:00
0414-Validate-tripwire-hook-placement-before-update.patch
0415-Add-option-to-allow-iron-golems-to-spawn-in-air.patch
0416-Configurable-chance-of-villager-zombie-infection.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0417-Optimise-Chunk-getFluid.patch
0418-Optimise-TickListServer-by-rewriting-it.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0419-Pillager-patrol-spawn-settings-and-per-player-option.patch
0420-Ensure-Entity-is-never-double-registered.patch
0421-Fix-unregistering-entities-from-unloading-chunks.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0422-Remote-Connections-shouldn-t-hold-up-shutdown.patch
0423-Do-not-allow-bees-to-load-chunks-for-beehives.patch
0424-Prevent-Double-PlayerChunkMap-adds-crashing-server.patch
0425-Optimize-Collision-to-not-load-chunks.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0426-Don-t-tick-dead-players.patch
0427-Dead-Player-s-shouldn-t-be-able-to-move.patch
0428-Optimize-PlayerChunkMap-memory-use-for-visibleChunks.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0429-Increase-Light-Queue-Size.patch
0430-Mid-Tick-Chunk-Tasks-Speed-up-processing-of-chunk-lo.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0431-Don-t-move-existing-players-to-world-spawn.patch
0432-Add-tick-times-API-and-mspt-command.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0433-Expose-MinecraftServer-isRunning.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0434-Add-Raw-Byte-ItemStack-Serialization.patch
0435-Remove-streams-from-Mob-AI-System.patch
0436-Delay-unsafe-actions-until-after-entity-ticking-is-d.patch
0437-Async-command-map-building.patch
0438-Improved-Watchdog-Support.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0439-Optimize-Pathfinding.patch
0440-Reduce-Either-Optional-allocation.patch
0441-Remove-streams-from-PairedQueue.patch
0442-Reduce-memory-footprint-of-NBTTagCompound.patch
0443-Prevent-opening-inventories-when-frozen.patch Replace usages of LegacyComponentSerializer.legacySection() in Paper-Server with PaperAdventure.LEGACY_SECTION_UXRC (#5233) 2021-02-23 05:45:09 -08:00
0444-Optimise-ArraySetSorted-removeIf.patch
0445-Don-t-run-entity-collision-code-if-not-needed.patch
0446-Optimize-ChunkProviderServer-s-chunk-level-checking-.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0447-Restrict-vanilla-teleport-command-to-valid-locations.patch
0448-Implement-Player-Client-Options-API.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0449-Fix-Chunk-Post-Processing-deadlock-risk.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0450-Don-t-crash-if-player-is-attempted-to-be-removed-fro.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0451-Broadcast-join-message-to-console.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0452-Fix-Longstanding-Broken-behavior-of-PlayerJoinEvent.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0453-Load-Chunks-for-Login-Asynchronously.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0454-Move-player-to-spawn-point-if-spawn-in-unloaded-worl.patch
0455-Add-PlayerAttackEntityCooldownResetEvent.patch
0456-Allow-multiple-callbacks-to-schedule-for-Callback-Ex.patch
0457-Don-t-fire-BlockFade-on-worldgen-threads.patch
0458-Add-phantom-creative-and-insomniac-controls.patch
0459-Fix-numerous-item-duplication-issues-and-teleport-is.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0460-Implement-Brigadier-Mojang-API.patch fix #5224 2021-02-22 10:24:44 -08:00
0461-Villager-Restocks-API.patch
0462-Validate-PickItem-Packet-and-kick-for-invalid.patch fix #5224 2021-02-22 10:24:44 -08:00
0463-Expose-game-version.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0464-Optimize-Voxel-Shape-Merging.patch
0465-Set-cap-on-JDK-per-thread-native-byte-buffer-cache.patch
0466-Implement-Mob-Goal-API.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0467-Use-distance-map-to-optimise-entity-tracker.patch
0468-Optimize-isOutsideRange-to-use-distance-maps.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0469-Stop-copy-on-write-operations-for-updating-light-dat.patch
0470-No-Tick-view-distance-implementation.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0471-Add-villager-reputation-API.patch
0472-Fix-Light-Command.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0473-Fix-PotionEffect-ignores-icon-flag.patch
0474-Optimize-brigadier-child-sorting-performance.patch
0475-Potential-bed-API.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0476-Wait-for-Async-Tasks-during-shutdown.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0477-Ensure-EntityRaider-respects-game-and-entity-rules-f.patch
0478-Protect-Bedrock-and-End-Portal-Frames-from-being-des.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0479-Optimize-NibbleArray-to-use-pooled-buffers.patch
0480-Reduce-MutableInt-allocations-from-light-engine.patch
0481-Reduce-allocation-of-Vec3D-by-entity-tracker.patch
0482-Ensure-safe-gateway-teleport.patch
0483-Add-option-for-console-having-all-permissions.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0484-Fix-Non-Full-Status-Chunk-NBT-Memory-Leak.patch
0485-Workaround-for-Client-Lag-Spikes-MC-162253.patch
0486-Implement-Chunk-Priority-Urgency-System-for-Chunks.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0487-Optimize-sending-packets-to-nearby-locations-sounds-.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0488-Improve-Chunk-Status-Transition-Speed.patch
0489-Fix-villager-trading-demand-MC-163962.patch
0490-Maps-shouldn-t-load-chunks.patch
0491-Use-seed-based-lookup-for-Treasure-Maps-Fixes-lag-fr.patch
0492-Optimize-Bit-Operations-by-inlining.patch
0493-Optimize-Light-Engine.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0494-Delay-Chunk-Unloads-based-on-Player-Movement.patch
0495-Add-Plugin-Tickets-to-API-Chunk-Methods.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0496-Fix-missing-chunks-due-to-integer-overflow.patch
0497-Fix-CraftScheduler-runTaskTimerAsynchronously-Plugin.patch
0498-Fix-piston-physics-inconsistency-MC-188840.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0499-Fix-sand-duping.patch
0500-Prevent-position-desync-in-playerconnection-causing-.patch fix #5224 2021-02-22 10:24:44 -08:00
0501-Fix-enderdragon-exp-dupe.patch
0502-Inventory-getHolder-method-without-block-snapshot.patch
0503-Expose-Arrow-getItemStack.patch
0504-Add-and-implement-PlayerRecipeBookClickEvent.patch fix #5224 2021-02-22 10:24:44 -08:00
0505-Hide-sync-chunk-writes-behind-flag.patch
0506-Limit-lightning-strike-effect-distance.patch
0507-Add-permission-for-command-blocks.patch fix #5224 2021-02-22 10:24:44 -08:00
0508-Ensure-Entity-AABB-s-are-never-invalid.patch
0509-Optimize-WorldBorder-collision-checks-and-air.patch
0510-Fix-Per-World-Difficulty-Remembering-Difficulty.patch fix #5224 2021-02-22 10:24:44 -08:00
0511-Paper-dumpitem-command.patch
0512-Don-t-allow-null-UUID-s-for-chat.patch
0513-Improve-Legacy-Component-serialization-size.patch
0514-Support-old-UUID-format-for-NBT.patch
0515-Clean-up-duplicated-GameProfile-Properties.patch
0516-Convert-legacy-attributes-in-Item-Meta.patch
0517-Remove-some-streams-from-structures.patch
0518-Remove-streams-from-classes-related-villager-gossip.patch
0519-Support-components-in-ItemMeta.patch
0520-Improve-EntityTargetLivingEntityEvent-for-1.16-mobs.patch
0521-Add-entity-liquid-API.patch
0522-Update-itemstack-legacy-name-and-lore.patch
0523-Spawn-player-in-correct-world-on-login.patch
0524-Add-PrepareResultEvent.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0525-Allow-delegation-to-vanilla-chunk-gen.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0526-Don-t-check-chunk-for-portal-on-world-gen-entity-add.patch
0527-Optimize-NetworkManager-Exception-Handling.patch
0528-Fix-Concurrency-issue-in-WeightedList.patch
0529-Optimize-the-advancement-data-player-iteration-to-be.patch
0530-Fix-arrows-never-despawning-MC-125757.patch
0531-Thread-Safe-Vanilla-Command-permission-checking.patch
0532-Move-range-check-for-block-placing-up.patch fix #5224 2021-02-22 10:24:44 -08:00
0533-Fix-SPIGOT-5989.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0534-Fix-SPIGOT-5824-Bukkit-world-container-is-not-used.patch
0535-Fix-SPIGOT-5885-Unable-to-disable-advancements.patch
0536-Fix-AdvancementDataPlayer-leak-due-from-quitting-ear.patch
0537-Add-missing-strikeLighting-call-to-World-spigot-stri.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0538-Fix-some-rails-connecting-improperly.patch
0539-Optimize-Pathfinder-Remove-Streams-Optimized-collect.patch
0540-Incremental-player-saving.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0541-Import-fastutil-classes.patch
0542-Don-t-mark-null-chunk-sections-for-block-updates.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0543-Remove-armour-stand-double-add-to-world.patch
0544-Fix-MC-187716-Use-configured-height.patch
0545-Fix-regex-mistake-in-CB-NBT-int-deserialization.patch
0546-Do-not-let-the-server-load-chunks-from-newer-version.patch
0547-Brand-support.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0548-Fix-MC-99259-Wither-Boss-Bar-doesn-t-update-until-in.patch
0549-Fix-MC-197271.patch
0550-MC-197883-Bandaid-decode-issue.patch
0551-Add-setMaxPlayers-API.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0552-Add-playPickupItemAnimation-to-LivingEntity.patch
0553-Don-t-require-FACING-data.patch
0554-Fix-SpawnChangeEvent-not-firing-for-all-use-cases.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0555-Add-moon-phase-API.patch
0556-Prevent-headless-pistons-from-being-created.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0557-Brand-support.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0558-Add-BellRingEvent.patch
0559-Add-zombie-targets-turtle-egg-config.patch
0560-Buffer-joins-to-world.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0561-Optimize-redstone-algorithm.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0562-Fix-hex-colors-not-working-in-some-kick-messages.patch
0563-PortalCreateEvent-needs-to-know-its-entity.patch
0564-Fix-CraftTeam-null-check.patch
0565-Add-more-Evoker-API.patch
0566-Add-a-way-to-get-translation-keys-for-blocks-entitie.patch
0567-Create-HoverEvent-from-ItemStack-Entity.patch
0568-Cache-block-data-strings.patch
0569-Fix-Entity-Teleportation-and-cancel-velocity-if-tele.patch fix #5224 2021-02-22 10:24:44 -08:00
0570-Add-additional-open-container-api-to-HumanEntity.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0571-Cache-DataFixerUpper-Rewrite-Rules-on-demand.patch
0572-Extend-block-drop-capture-to-capture-all-items-added.patch
0573-Don-t-mark-dirty-in-invalid-locations-SPIGOT-6086.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0574-Expose-the-Entity-Counter-to-allow-plugins-to-use-va.patch
0575-Lazily-track-plugin-scoreboards-by-default.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0576-Entity-isTicking.patch
0577-Fix-deop-kicking-non-whitelisted-player-when-white-l.patch
0578-Fix-Not-a-string-Map-Conversion-spam.patch
0579-Fix-CME-on-adding-a-passenger-in-CreatureSpawnEvent.patch
0580-MC-147729-Drop-items-that-are-extra-from-a-crafting-.patch
0581-Reset-Ender-Crystals-on-Dragon-Spawn.patch
0582-Fix-for-large-move-vectors-crashing-server.patch fix #5224 2021-02-22 10:24:44 -08:00
0583-Optimise-getType-calls.patch
0584-Villager-resetOffers.patch
0585-Improve-inlinig-for-some-hot-IBlockData-methods.patch
0586-Retain-block-place-order-when-capturing-blockstates.patch
0587-Reduce-blockpos-allocation-from-pathfinding.patch
0588-Fix-item-locations-dropped-from-campfires.patch
0589-Player-elytra-boost-API.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0590-Fixed-TileEntityBell-memory-leak.patch
0591-Avoid-error-bubbling-up-when-item-stack-is-empty-in-.patch
0592-Add-getOfflinePlayerIfCached-String.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0593-Add-ignore-discounts-API.patch
0594-Toggle-for-removing-existing-dragon.patch
0595-Fix-client-lag-on-advancement-loading.patch
0596-Item-no-age-no-player-pickup.patch
0597-Beacon-API-custom-effect-ranges.patch
0598-Add-API-for-quit-reason.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0599-Seed-based-feature-search.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0600-Add-Wandering-Trader-spawn-rate-config-options.patch
0601-Significantly-improve-performance-of-the-end-generat.patch
0602-Expose-world-spawn-angle.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0603-Add-Destroy-Speed-API.patch
0604-Fix-Player-spawnParticle-x-y-z-precision-loss.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0605-Add-LivingEntity-clearActiveItem.patch
0606-Add-PlayerItemCooldownEvent.patch
0607-More-lightning-API.patch
0608-Climbing-should-not-bypass-cramming-gamerule.patch
0609-Added-missing-default-perms-for-commands.patch
0610-Add-PlayerShearBlockEvent.patch
0611-Add-warning-for-servers-not-running-on-Java-11.patch
0612-Set-spigots-verbose-world-setting-to-false-by-def.patch
0613-Fix-curing-zombie-villager-discount-exploit.patch
0614-Fix-curing-villager-makes-equipment-disappear.patch
0615-Limit-recipe-packets.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0616-Fix-CraftSound-backwards-compatibility.patch
0617-MC-4-Fix-item-position-desync.patch Add config option for displayname in quit message (#5260) 2021-02-26 17:54:48 +00:00
0618-Player-Chunk-Load-Unload-Events.patch
0619-Optimize-Dynamic-get-Missing-Keys.patch
0620-Expose-LivingEntity-hurt-direction.patch
0621-Add-OBSTRUCTED-reason-to-BedEnterResult.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0622-Do-not-crash-from-invalid-ingredient-lists-in-Villag.patch
0623-added-PlayerTradeEvent.patch
0624-Implement-TargetHitEvent.patch
0625-Additional-Block-Material-API-s.patch
0626-Fix-harming-potion-dupe.patch
0627-Implement-API-to-get-Material-from-Boats-and-Minecar.patch
0628-Optimized-tick-ready-check.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0629-Cache-burn-durations.patch
0630-Allow-disabling-mob-spawner-spawn-egg-transformation.patch
0631-Implement-PlayerFlowerPotManipulateEvent.patch
0632-Fix-interact-event-not-being-called-in-adventure.patch fix #5224 2021-02-22 10:24:44 -08:00
0633-Zombie-API-breaking-doors.patch
0634-Fix-nerfed-slime-when-splitting.patch
0635-Add-EntityLoadCrossbowEvent.patch
0636-Guardian-beam-workaround.patch
0637-Added-WorldGameRuleChangeEvent.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0638-Added-ServerResourcesReloadedEvent.patch
0639-Added-world-settings-for-mobs-picking-up-loot.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0640-Implemented-BlockFailedDispenseEvent.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0641-Added-PlayerLecternPageChangeEvent.patch
0642-Fire-event-on-GS4-query.patch
0643-Added-PlayerLoomPatternSelectEvent.patch
0644-Configurable-door-breaking-difficulty.patch
0645-Empty-commands-shall-not-be-dispatched.patch
0646-Implement-API-to-expose-exact-interaction-point.patch
0647-Remove-stale-POIs.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0648-Fix-villager-boat-exploit.patch fix #5212 and #5213 2021-02-22 00:20:23 -08:00
0649-Entity-load-save-limit-per-chunk.patch
0650-Add-sendOpLevel-API.patch [Auto] Updated Upstream (Bukkit/CraftBukkit) 2021-02-24 04:32:17 -05:00
0651-Add-StructureLocateEvent.patch
0652-Collision-option-for-requiring-a-player-participant.patch
0653-Make-ProjectileHitEvent-Cancellable.patch
0654-Return-chat-component-with-empty-text-instead-of-thr.patch
0655-Make-schedule-command-per-world.patch
0656-Configurable-max-leash-distance.patch
0657-Implement-BlockPreDispenseEvent.patch
0658-Added-Vanilla-Entity-Tags.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0659-added-Wither-API.patch
0660-Added-firing-of-PlayerChangeBeaconEffectEvent.patch
0661-Fix-console-spam-when-removing-chests-in-water.patch
0662-Add-toggle-for-always-placing-the-dragon-egg.patch
0663-Added-PlayerStonecutterRecipeSelectEvent.patch
0664-Add-dropLeash-variable-to-EntityUnleashEvent.patch
0665-Skip-distance-map-update-when-spawning-disabled.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0666-Reset-shield-blocking-on-dimension-change.patch
0667-add-DragonEggFormEvent.patch
0668-EntityMoveEvent.patch
0669-added-option-to-disable-pathfinding-updates-on-block.patch Upstream Update (#5211) 2021-02-21 20:55:01 +00:00
0670-Inline-shift-direction-fields.patch
0671-Allow-adding-items-to-BlockDropItemEvent.patch
0672-Add-getMainThreadExecutor-to-BukkitScheduler.patch
0673-living-entity-allow-attribute-registration.patch
0674-fix-dead-slime-setSize-invincibility.patch
0675-Merchant-getRecipes-should-return-an-immutable-list.patch
0676-misc-debugging-dumps.patch Don't grab the threads stacktrace when dumping same thread 2021-02-24 18:45:21 +00:00
0677-Add-support-for-hex-color-codes-in-console.patch Fix further issues with rgb text pattern matching 2021-02-25 19:38:56 +01:00