Paper/patches/server
Spottedleaf bc2890b955 Merge tuinity (#6413)
This PR contains all of Tuinity's patches. Very notable ones are:

- Highly optimised collisions
- Optimised entity lookups by bounding box (Mojang made regressions in 1.17, this brings it back to 1.16)
- Starlight https://github.com/PaperMC/Starlight
- Rewritten dataconverter system https://github.com/PaperMC/DataConverter
- Random block ticking optimisation (wrongly dropped from Paper 1.17)
- Chunk ticking optimisations
- Anything else I've forgotten in the 60 or so patches

If you are a previous Tuinity user, your config will not migrate. You must do it yourself. The config options have simply been moved into paper.yml, so it will be an easy migration. However, please note that the chunk loading options in tuinity.yml are NOT compatible with the options in paper.yml. 

* Port tuinity, initial patchset

* Update gradle to 7.2

jmp said it fixes rebuildpatches not working for me. it fucking better

* Completely clean apply

* Remove tuinity config, add per player api patch

* Remove paper reobf mappings patch

* Properly update gradlew

* Force clean rebuild

* Mark fixups

Comments and ATs still need to be done

* grep -r "Tuinity"

* Fixup

* Ensure gameprofile lastaccess is written only under the state lock

* update URL for dataconverter

* Only clean rebuild tuinity patches

might fix merge conflicts

* Use UTF-8 for gradlew

* Clean rb patches again

* Convert block ids used as item ids

Neither the converters of pre 1.13 nor DFU handled these cases,
as by the time they were written the game at the time didn't
consider these ids valid - they would be air. Because of this,
some worlds have logspam since only DataConverter (not DFU or
legacy converters) will warn when an invalid id has been
seen.

While quite a few do need to now be considered as air, quite a lot
do not. So it makes sense to add conversion for these items, instead
of simply suppressing or ignoring the logs. I've now added id -> string conversion
for all block ids that could be used as items that existed in the game
before 1.7.10 (I have no interest in tracking down the
exact version block ids stopped working) that were on
https://minecraft-ids.grahamedgecombe.com/

Items that did not directly convert to new items will
be instead converted to air: stems, wheat crops, piston head,
tripwire wire block

* Fix LightPopulated parsing in V1466

The DFU code was checking if the number existed, not if it
didn't exist. I misread the original code.

* Always parse protochunk light sources unless it is marked as non-lit

Chunks not marked as lit will always go through the light engine,
so they should always have their block sources parsed.

* Update custom names to JSON for players

Missed this fix from CB, as it was inside
the DataFixers class.

I decided to double check all of the CB changes again:

DataFixers.java was the only area I missed, as I had inspected all
datafixer diffs and implemented them all into DataConverter. I also
checked Bootstrap.java again, and re-evaluated their changes. I had
previously done this, but determined that they were all bad.

The changes to make standing_sign block map to oak_sign block in
V1450 is bad, because that's not the item id V1450 accepts. Only
in 1.14 did oak_sign even exist, and as expected there is a converter
to rename all existing sign items/blocks.

The fix to register the portal block under id 1440 is useless, as
the flattenning logic will default to the lowest registered id - which
is the exact blockstate that CB registers into 1440. So it just
doesn't do anything.

The extra item ids in the id -> string converter are already added,
but I found this from EMC originally.

The change for the spawn egg id 23 -> Arrow is just wrong,
that id DOES correspond to TippedArrow, NOT Arrow. As
expected, the spawn egg already has a dedicated mapping for
Arrow, which is id 10 - which was Arrow's entity id.

I also ported a fix for the cooked_fished id update. This doesn't
really matter since there is already a dataconverter to fix this,
but the game didn't accept cooked_fished at the time. So I see
no harm.

* Review all converters and walkers

- Refactor V99 to have helper methods for defining entity/tile
  entity types
- Automatically namespace all ids that should be namespaced.
  While vanilla never saved non-namespaced data for things that
  are namespaced, plugins/users might have.
- Synchronised the identity ensure map in HelperBlockFlatteningV1450
- Code style consistency
- Add missing log warning in V102 for ITEM_NAME type conversion
- Use getBoolean instead of getByte
- Use ConverterAbstractEntityRename for V143 TippedArrow -> Arrow
  rename, as it will affect ENTITY_NAME type
- Always set isVillager to false in V502 for Zombie
- Register V808's converter under subversion 1 like DFU
- Register a breakpoint for V1.17.1. In the future, all final
  versions of major releases will have a breakpoint so that
  the work required to determine if a converter needs a breakpoint
  is minimal
- Validate that a dataconverter is only registered for a version
  that is registered
- ConverterFlattenTileEntity is actually ConverterFlattenEntity
  It even registered the converters under TILE_ENTITY, instead of
  ENTITY.
- Fix id comparison in V1492 STRUCTURE_FEATURE renamer
- Use ConverterAbstractStatsRename for V1510 stats renamer
  At the time I had written that class, the abstract renamer didn't
  exist.
- Ensure OwnerUUID is at least set to empty string in
  V1904 if the ocelot is converted to a cat (this is
  likely so that it retains a collar)
- Use generic read/write for Records in V1946
  Records is actually a list, not a map. So reading map was
  invalid.

* Always set light to zero when propagating decrease

This fixes an almost infinite loop where light values
would be spam queued on a very small subset on blocks.

This also likely fixes the memory issues people were
seeing.

* re-organize patches

* Apply and fix conflicts

* Revert some patches

getChunkAt retains chunks so that plugins don't spam loads
revert mc-4 fix will remain unless issues pop up

* Shuffle iterated chunks if per player is not enabled

Can help with some mob spawning stacking up at locations

* Make per player default, migrate all configs

* Adjust comments in fixups

* Rework config for player chunk loader

Old config is not compatible. Move all configs to be
under `settings` in paper.yml

The player chunk loader has been modified to
less aggressively load chunks, but to send
chunks at higher rates compared to tuinity. There are
new config entries to tune this behavior.

* Add back old constructor to CompressionEncoder/Decoder (fixes
 Tuinity #358)

* Raise chunk loading default limits

* Reduce worldgen thread workers for lower core count cpus

* Raise limits for chunk loading config

Also place it under `chunk-loading`

* Disable max chunk send rate by default

* Fix conflicts and rebuild patches

* Drop default send rate again

Appears to be still causing problems for no known reason

* Raise chunk send limits to 100 per player

While a low limit fixes ping issues for some people, most people
do not suffer from this issue and thus should not suffer from
an extremely slow load-in rate.

* Rebase part 1

Autosquash the fixups

* Move not implemented up

* Fixup mc-dev fixes

Missed this one

* Rebase per player viewdistance api into the original api patch

* Remove old light engine patch part 1

The prioritisation must be kept from it, so that part
has been rebased into the priority patch.
Part 2 will deal with rebasing all of the patches _after_

* Rebase remaining patches for old light patch removal

* Remove other mid tick patch

* Remove Optimize-PlayerChunkMap-memory-use-for-visibleChunks.patch

Replaced by `Do not copy visible chunks`

* Revert AT for Vec3i setX/Y/Z

The class is immutable. set should not be exposed

* Remove old IntegerUtil class

* Replace old CraftChunk#getEntities patch

* Remove import for SWMRNibbleArray in ChunkAccess

* Finished merge checklist

* Remove ensureTickThread impl in urgency patch

Co-authored-by: Spottedleaf <Spottedleaf@users.noreply.github.com>
Co-authored-by: Jason Penilla <11360596+jpenilla@users.noreply.github.com>
2021-08-31 04:02:11 -07:00
..
Ability-to-apply-mending-to-XP-API.patch deprecate all obfhelpers 2021-06-17 21:52:26 +02:00
Ability-to-change-PlayerProfile-in-AsyncPreLoginEven.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
Ability-to-get-Tile-Entities-from-a-chunk-without-sn.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Add-a-bunch-of-missing-forceDrop-toggles.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6245) 2021-07-22 11:11:56 -07:00
Add-a-should-burn-in-sunlight-API-for-Phantoms-and-S.patch AbstractSkeleton should extend RangedEntity (#6087) 2021-07-05 22:48:08 -05:00
Add-ability-to-configure-frosted_ice-properties.patch some patches 2021-06-11 21:38:04 -07:00
Add-additional-open-container-api-to-HumanEntity.patch Fix closeInventory shenanigans (#6292) 2021-07-30 11:37:11 +02:00
Add-Adventure-message-to-PlayerAdvancementDoneEvent.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-and-implement-PlayerRecipeBookClickEvent.patch more patches (#5827) 2021-06-14 01:37:14 -07:00
Add-API-for-quit-reason.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#5904) 2021-06-20 21:25:59 +02:00
Add-API-methods-to-control-if-armour-stands-can-move.patch even even even even even even even even even more changes 2021-06-12 00:24:28 -07:00
Add-APIs-to-replace-OfflinePlayer-getLastPlayed.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Add-ArmorStand-Item-Meta.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
Add-basic-Datapack-API.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-BeaconEffectEvent.patch more patches 2021-06-11 17:57:04 -07:00
Add-BellRevealRaiderEvent.patch patches 2021-06-14 20:50:26 -07:00
Add-BellRingEvent.patch even MOAR progress 2021-06-14 06:45:16 -07:00
Add-Block-isValidTool.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-BlockBreakBlockEvent.patch Add BlockBreakBlockEvent (#4989) 2021-08-24 18:42:23 -07:00
Add-bypass-host-check.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-cause-to-Weather-ThunderChangeEvents.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Add-Channel-initialization-listeners.patch Definitely readd this patch for the first time 2021-06-16 13:07:43 +02:00
Add-command-line-option-to-load-extra-plugin-jars-no.patch [ci-skip] Fix description of add-plugin command line option (#6031) 2021-06-29 02:09:02 -07:00
Add-config-for-mobs-immune-to-default-effects.patch Add config for mobs immune to default effects (#4835) 2021-07-09 21:49:49 -07:00
Add-config-to-disable-ender-dragon-legacy-check.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Add-configurable-despawn-distances-for-living-entiti.patch more patches 2021-06-11 15:37:16 -07:00
Add-configurable-portal-search-radius.patch more patches 2021-06-11 17:57:04 -07:00
Add-configuration-option-to-prevent-player-names-fro.patch even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even even 2021-06-12 02:17:20 -07:00
add-consumeFuel-to-FurnaceBurnEvent.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-CraftMagicNumbers.isSupportedApiVersion.patch more patches 2021-06-12 14:31:35 -07:00
Add-Debug-Entities-option-to-debug-dupe-uuid-issues.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
Add-debug-for-sync-chunk-loads.patch Squash "Clear SyncLoadInfo" into "Add debug for sync chunk loads" and add tab completion for the clear argument (#6483) 2021-08-24 18:45:40 -05:00
Add-Destroy-Speed-API.patch Implement Translatable in appropriate places (#6248) 2021-08-13 21:11:12 -07:00
add-DragonEggFormEvent.patch more patches 2021-06-14 12:58:32 -07:00
Add-dropLeash-variable-to-EntityUnleashEvent.patch more patches 2021-06-14 12:58:32 -07:00
Add-Early-Warning-Feature-to-WatchDog.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Add-effect-to-block-break-naturally.patch more patches 2021-06-13 12:29:58 -07:00
Add-ElderGuardianAppearanceEvent.patch patches 2021-06-14 20:50:26 -07:00
Add-entity-liquid-API.patch deprecate all obfhelpers 2021-06-17 21:52:26 +02:00
Add-EntityBlockStorage-clearEntities.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-EntityInsideBlockEvent.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6379) 2021-08-13 10:08:34 -07:00
Add-EntityLoadCrossbowEvent.patch [ci skip] Very important bug fix :O (#5934) 2021-06-21 09:36:53 -05:00
Add-EntityZapEvent.patch Honor spigot.yml setting log-villager-deaths (#6057) 2021-07-01 22:28:31 -05:00
Add-environment-variable-to-disable-server-gui.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-exception-reporting-event.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6222) 2021-07-18 00:41:53 -07:00
Add-fast-alternative-constructor-for-Rotations.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
add-get-set-drop-chance-to-EntityEquipment.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#5904) 2021-06-20 21:25:59 +02:00
Add-getMainThreadExecutor-to-BukkitScheduler.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-getOfflinePlayerIfCached-String.patch more patches 2021-06-14 09:58:00 -07:00
Add-git-branch-and-commit-to-manifest.patch [ci skip] Use commit timestamp instead of build time in manifest (#6161) 2021-07-11 23:24:48 -07:00
add-hand-to-BlockMultiPlaceEvent.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Add-hand-to-bucket-events.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Add-handshake-event-to-allow-plugins-to-handle-clien.patch some patches 2021-06-11 21:38:04 -07:00
Add-Heightmap-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Add-ignore-discounts-API.patch more patches 2021-06-14 09:58:00 -07:00
add-isDeeplySleeping-to-HumanEntity.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-LivingEntity-clearActiveItem.patch more patches 2021-06-14 09:58:00 -07:00
Add-LivingEntity-getTargetEntity.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Add-method-to-open-already-placed-sign.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Add-methods-for-working-with-arrows-stuck-in-living-.patch more patches 2021-06-11 17:57:04 -07:00
Add-methods-to-get-translation-keys.patch Implement Translatable in appropriate places (#6248) 2021-08-13 21:11:12 -07:00
Add-MinecraftKey-Information-to-Objects.patch remove some more obf helpers 2021-06-16 10:48:25 -07:00
Add-missing-strikeLighting-call-to-World-spigot-stri.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Add-Mob-lookAt-API.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-moon-phase-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Add-more-async-catchers.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Add-More-Creeper-API.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Add-more-Evoker-API.patch AT bullshit 2021-06-16 00:24:12 +02:00
add-more-information-to-Entity.toString.patch more patches 2021-06-12 14:31:35 -07:00
Add-more-LimitedRegion-API.patch Move ProtoWorld methods to LimitedRegion (#6486) 2021-08-28 15:43:26 +02:00
Add-more-WanderingTrader-API.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-more-Witch-API.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Add-more-Zombie-API.patch AT bullshit 2021-06-16 00:24:12 +02:00
Add-OBSTRUCTED-reason-to-BedEnterResult.patch more patches 2021-06-14 11:50:22 -07:00
Add-option-for-console-having-all-permissions.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Add-option-to-allow-iron-golems-to-spawn-in-air.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Add-option-to-disable-pillager-patrols.patch more patches 2021-06-13 12:29:58 -07:00
Add-option-to-fix-items-merging-through-walls.patch patches 2021-06-14 20:50:26 -07:00
Add-option-to-make-parrots-stay-on-shoulders-despite.patch AT bullshit 2021-06-16 00:24:12 +02:00
Add-option-to-nerf-pigmen-from-nether-portals.patch Fix entities glitching through blocks pushed by pistons (#6308) 2021-08-21 16:15:29 +02:00
Add-option-to-prevent-players-from-moving-into-unloa.patch patches 2021-06-12 23:48:25 -07:00
Add-packet-limiter-config.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
add-per-world-spawn-limits.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Add-permission-for-command-blocks.patch Updated Upstream (CraftBukkit) (#6279) 2021-07-28 09:39:14 +02:00
Add-phantom-creative-and-insomniac-controls.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Add-PhantomPreSpawnEvent.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Add-PlayerArmorChangeEvent.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
Add-PlayerAttackEntityCooldownResetEvent.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Add-PlayerConnectionCloseEvent.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Add-PlayerInitialSpawnEvent.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#5904) 2021-06-20 21:25:59 +02:00
Add-PlayerItemCooldownEvent.patch more patches 2021-06-14 09:58:00 -07:00
Add-PlayerJumpEvent.patch More more more work 2021-06-12 14:58:17 +02:00
Add-PlayerKickEvent-causes.patch Fix block action handling (#6213) 2021-07-17 14:46:46 +02:00
Add-PlayerSetSpawnEvent.patch Fix yaw on player spawn (#6409) 2021-08-16 14:46:25 -07:00
Add-PlayerShearBlockEvent.patch more patches 2021-06-14 11:50:22 -07:00
Add-PlayerUseUnknownEntityEvent.patch AT bullshit 2021-06-16 00:24:12 +02:00
Add-playPickupItemAnimation-to-LivingEntity.patch more work work work 2021-06-14 12:42:08 +02:00
Add-Plugin-Tickets-to-API-Chunk-Methods.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Add-PrepareResultEvent.patch nuke a few more obfhelpers 2021-06-17 21:37:37 +02:00
Add-ProjectileCollideEvent.patch even even even even even even even even even more changes 2021-06-12 00:24:28 -07:00
Add-PufferFishStateChangeEvent.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-raw-address-to-AsyncPlayerPreLoginEvent.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-Raw-Byte-ItemStack-Serialization.patch AT bullshit 2021-06-16 00:24:12 +02:00
Add-ray-tracing-methods-to-LivingEntity.patch even even even even more work 2021-06-12 21:03:02 -07:00
Add-recipe-to-cook-events.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
add-RespawnFlags-to-PlayerRespawnEvent.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#5904) 2021-06-20 21:25:59 +02:00
Add-sendOpLevel-API.patch [ci skip] clean up diff from 1.17 update (#6462) 2021-08-24 16:30:26 -07:00
Add-server-name-parameter.patch even more progress 2021-06-11 22:20:08 -07:00
Add-setMaxPlayers-API.patch more work work work 2021-06-14 12:42:08 +02:00
Add-setPlayerProfile-API-for-Skulls.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
Add-setting-for-proxy-online-mode-status.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Add-source-to-PlayerExpChangeEvent.patch even even even even even even even even even more changes 2021-06-12 00:24:28 -07:00
Add-StructureLocateEvent.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Add-sun-related-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Add-support-for-hex-color-codes-in-console.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-System.out-err-catcher.patch Add timeout & interval to sysout catcher (#6383) 2021-08-21 17:01:42 +02:00
Add-ThrownEggHatchEvent.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Add-tick-times-API-and-mspt-command.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Add-TNTPrimeEvent.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Add-toggle-for-always-placing-the-dragon-egg.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Add-Unix-domain-socket-support.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-UnknownCommandEvent.patch More more work 2021-06-12 13:18:01 +02:00
Add-Velocity-IP-Forwarding-Support.patch patches 2021-06-12 23:48:25 -07:00
Add-velocity-warnings.patch more patches 2021-06-11 17:57:04 -07:00
Add-version-history-to-version-command.patch more patches 2021-06-11 15:37:16 -07:00
Add-villager-reputation-API.patch death to more obfhelpers 2021-06-17 22:20:03 +02:00
Add-Wandering-Trader-spawn-rate-config-options.patch more patches 2021-06-14 09:58:00 -07:00
Add-World-Util-Methods.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
Add-worldborder-events.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Add-zombie-targets-turtle-egg-config.patch even MOAR progress 2021-06-14 06:45:16 -07:00
Added-EntityDamageItemEvent.patch Added EntityItemDamageEvent (#4928) 2021-08-09 22:04:44 -07:00
Added-firing-of-PlayerChangeBeaconEffectEvent.patch more patches 2021-06-14 12:58:32 -07:00
Added-missing-default-perms-for-commands.patch more patches 2021-06-14 11:50:22 -07:00
added-option-to-disable-pathfinding-updates-on-block.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
Added-PlayerBedFailEnterEvent.patch Updated Upstream (CraftBukkit) (#6504) 2021-08-27 11:51:18 +02:00
Added-PlayerDeepSleepEvent.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Added-PlayerLecternPageChangeEvent.patch more patches & fixes to existing patches 2021-06-14 12:17:47 -07:00
Added-PlayerLoomPatternSelectEvent.patch more patches & fixes to existing patches 2021-06-14 12:17:47 -07:00
added-PlayerNameEntityEvent.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Added-PlayerStonecutterRecipeSelectEvent.patch Fix Stonecutter #6180 issue (#6181) 2021-07-15 00:37:22 +09:00
added-PlayerTradeEvent.patch more patches 2021-06-14 11:50:22 -07:00
Added-ServerResourcesReloadedEvent.patch more patches & fixes to existing patches 2021-06-14 12:17:47 -07:00
Added-Vanilla-Entity-Tags.patch more patches 2021-06-14 12:58:32 -07:00
added-Wither-API.patch more patches 2021-06-14 12:58:32 -07:00
Added-world-settings-for-mobs-picking-up-loot.patch more patches & fixes to existing patches 2021-06-14 12:17:47 -07:00
Added-WorldGameRuleChangeEvent.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Additional-Block-Material-API-s.patch more patches 2021-06-14 11:50:22 -07:00
additions-to-PlayerGameModeChangeEvent.patch Better docs for PlayerGameModeChangeEvent (#6461) 2021-08-22 08:10:33 -07:00
Adds-PlayerArmSwingEvent.patch Add PlayerArmSwingEvent (#5353) 2021-07-09 06:56:30 -07:00
Adventure.patch [ci skip] Remove this file that got created somehow (#6489) 2021-08-26 09:49:32 -07:00
All-chunks-are-slime-spawn-chunks-toggle.patch more patches 2021-06-11 17:57:04 -07:00
Allow-adding-items-to-BlockDropItemEvent.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Allow-chests-to-be-placed-with-NBT-data.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Allow-controlled-flushing-for-network-manager.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Allow-delegation-to-vanilla-chunk-gen.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Allow-disabling-armour-stand-ticking.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Allow-disabling-mob-spawner-spawn-egg-transformation.patch more patches 2021-06-14 11:50:22 -07:00
Allow-for-Component-suggestion-tooltips-in-AsyncTabC.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Allow-for-toggling-of-spawn-chunks.patch more patches 2021-06-11 15:37:16 -07:00
Allow-nerfed-mobs-to-jump-and-take-water-damage.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Allow-overriding-the-java-version-check.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6379) 2021-08-13 10:08:34 -07:00
Allow-Reloading-of-Command-Aliases.patch even even even even even even even even even more changes 2021-06-12 00:24:28 -07:00
Allow-Reloading-of-Custom-Permissions.patch more patches 2021-06-11 17:57:04 -07:00
Allow-removal-addition-of-entities-to-entity-ticklis.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Allow-Saving-of-Oversized-Chunks.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Allow-skipping-writing-of-comments-to-server.propert.patch Fix writing server.properties with wrong encoding (#6322) 2021-08-04 09:48:15 +02:00
Allow-spawning-Item-entities-with-World.spawnEntity.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Allow-specifying-a-custom-authentication-servers-dow.patch More more work 2021-06-12 13:18:01 +02:00
Allow-using-signs-inside-spawn-protection.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Always-parse-protochunk-light-sources-unless-it-is-m.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Always-tick-falling-blocks.patch more patches 2021-06-11 15:37:16 -07:00
Anti-Xray.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
AnvilDamageEvent.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
API-to-get-a-BlockState-without-a-snapshot.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Async-command-map-building.patch [ci skip] Cleanup diff in Async command map building (#6492) 2021-08-26 11:41:22 -05:00
Asynchronous-chunk-IO-and-loading.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
AsyncTabCompleteEvent.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Attempt-to-recalculate-regionfile-header-if-it-is-co.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Attributes-API-for-item-defaults.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Auto-fix-bad-Y-levels-on-player-login.patch even even more progress 2021-06-11 23:02:49 -07:00
Avoid-blocking-on-Network-Manager-creation.patch Definitely readd this patch for the first time 2021-06-16 13:07:43 +02:00
Avoid-error-bubbling-up-when-item-stack-is-empty-in-.patch more patches 2021-06-14 09:58:00 -07:00
Avoid-hopper-searches-if-there-are-no-items.patch add back optimizing hopper searches (#5839) 2021-06-15 01:29:12 -07:00
Avoid-item-merge-if-stack-size-above-max-stack-size.patch more patches 2021-06-12 14:31:35 -07:00
Basic-PlayerProfile-API.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Be-a-bit-more-informative-in-maxHealth-exception.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Beacon-API-custom-effect-ranges.patch fix custom beacon ranges (#6067) 2021-07-02 12:51:49 -07:00
Bees-get-gravity-in-void.-Fixes-MC-167279.patch fix no grav bee patch for world height changes 2021-06-14 08:19:29 -07:00
Block-Enderpearl-Travel-Exploit.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Block-Entity-remove-from-being-called-on-Players.patch patches and patches 2021-06-13 01:26:58 -07:00
Block-player-logins-during-server-shutdown.patch More more work 2021-06-12 13:18:01 +02:00
BlockDestroyEvent.patch patches and patches 2021-06-13 01:26:58 -07:00
Book-Size-Limits.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Bound-Treasure-Maps-to-World-Border.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Brand-support.patch more work work work 2021-06-14 12:42:08 +02:00
Break-up-and-make-tab-spam-limits-configurable.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Broadcast-join-message-to-console.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Buffer-joins-to-world.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Build-system-changes.patch Setup dev bundle publishing (#6163) 2021-08-17 17:11:04 -05:00
Cache-block-data-strings.patch even moar workkkkk 2021-06-14 16:41:34 +02:00
Cache-burn-durations.patch more patches 2021-06-14 11:50:22 -07:00
Cache-DataFixerUpper-Rewrite-Rules-on-demand.patch even moar workkkkk 2021-06-14 16:41:34 +02:00
Cache-user-authenticator-threads.patch even even even even even even even more work 2021-06-11 23:24:50 -07:00
Call-PaperServerListPingEvent-for-legacy-pings.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Call-player-spectator-target-events-and-improve-impl.patch remove remaining POMs 2021-06-17 10:11:00 -07:00
call-PortalCreateEvent-players-and-end-platform.patch death to more obfhelpers 2021-06-17 22:20:03 +02:00
Call-WhitelistToggleEvent-when-whitelist-is-toggled.patch Work 2021-06-13 11:41:07 +02:00
Cap-Entity-Collisions.patch even even even even even even even even even even even 2021-06-12 02:01:04 -07:00
Catch-JsonParseException-in-Entity-and-TE-names.patch remove some more obf helpers 2021-06-16 10:48:25 -07:00
Change-EnderEye-target-without-changing-other-things.patch Add API to change EnderEye target without other nonsense (#6460) 2021-08-22 08:19:42 -07:00
Check-Drowned-for-Villager-Aggression-Config.patch patches 2021-06-12 23:48:25 -07:00
Check-online-mode-before-converting-and-renaming-pla.patch more patches 2021-06-11 15:37:16 -07:00
Chunk-debug-command.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Chunk-Save-Reattempt.patch AT bullshit 2021-06-16 00:24:12 +02:00
ChunkMapDistance-CME.patch More more work 2021-06-13 14:43:56 +02:00
Clean-up-duplicated-GameProfile-Properties.patch more patches (#5827) 2021-06-14 01:37:14 -07:00
Clear-bucket-NBT-after-dispense.patch Clear bucket NBT after dispense (#6391) 2021-08-14 02:51:03 -07:00
Climbing-should-not-bypass-cramming-gamerule.patch more patches 2021-06-14 09:58:00 -07:00
Collision-option-for-requiring-a-player-participant.patch more patches 2021-06-14 12:58:32 -07:00
Complete-resource-pack-API.patch Expand resource pack API 2021-07-12 20:42:17 +01:00
Config-option-for-Piglins-guarding-chests.patch Config option for Piglins guarding chests (#4829) 2021-08-09 19:13:58 -07:00
Configurable-Alternative-LootPool-Luck-Formula.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Configurable-baby-zombie-movement-speed.patch more patches 2021-06-11 15:37:16 -07:00
Configurable-cactus-bamboo-and-reed-growth-heights.patch more patches 2021-06-11 15:37:16 -07:00
Configurable-Cartographer-Treasure-Maps.patch even even even even even even even even even more changes 2021-06-12 00:24:28 -07:00
Configurable-chance-of-villager-zombie-infection.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Configurable-Chunk-Inhabited-Time.patch more patches (#5799) 2021-06-11 19:24:43 -07:00
Configurable-connection-throttle-kick-message.patch patches 2021-06-12 23:48:25 -07:00
Configurable-container-update-tick-rate.patch more patches 2021-06-11 17:57:04 -07:00
Configurable-Disabling-Cat-Chest-Detection.patch more patches 2021-06-11 17:57:04 -07:00
Configurable-door-breaking-difficulty.patch AT bullshit 2021-06-16 00:24:12 +02:00
Configurable-end-credits.patch more patches 2021-06-11 15:37:16 -07:00
Configurable-fishing-time-ranges.patch more patches 2021-06-11 15:37:16 -07:00
Configurable-flying-kick-messages.patch even even more progress 2021-06-11 23:02:49 -07:00
Configurable-Grass-Spread-Tick-Rate.patch patches 2021-06-11 20:07:57 -07:00
Configurable-inter-world-teleportation-safety.patch more patches 2021-06-11 17:57:04 -07:00
Configurable-item-frame-map-cursor-update-interval.patch Fix possible divide by 0 error with cursor updates (#6398) 2021-08-14 10:44:31 -07:00
Configurable-Keep-Spawn-Loaded-range-per-world.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Configurable-max-leash-distance.patch more patches 2021-06-14 12:58:32 -07:00
Configurable-mob-spawner-tick-rate.patch more patches 2021-06-11 17:57:04 -07:00
Configurable-Non-Player-Arrow-Despawn-Rate.patch more patches 2021-06-11 17:57:04 -07:00
Configurable-packet-in-spam-threshold.patch even even more progress 2021-06-11 23:02:49 -07:00
Configurable-Player-Collision.patch Fix players not being added to collide rule (Fixes #6024) 2021-06-28 22:16:46 +01:00
Configurable-projectile-relative-velocity.patch even more work 2021-06-13 16:14:18 +02:00
Configurable-RCON-IP-address.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Configurable-spawn-chances-for-skeleton-horses.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
Configurable-speed-for-water-flowing-over-lava.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Configurable-sprint-interruption-on-attack.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Configurable-top-of-nether-void-damage.patch more patches 2021-06-11 15:37:16 -07:00
Consolidate-flush-calls-for-entity-tracker-packets.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Convert-legacy-attributes-in-Item-Meta.patch more work uwu 2021-06-14 11:46:59 +02:00
copy-TESign-isEditable-from-snapshots.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Correctly-handle-recursion-for-chunkholder-updates.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Create-HoverEvent-from-ItemStack-Entity.patch even moar workkkkk 2021-06-14 16:41:34 +02:00
Custom-replacement-for-eaten-items.patch more patches 2021-06-11 17:57:04 -07:00
Custom-table-implementation-for-blockstate-state-loo.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Dead-Player-s-shouldn-t-be-able-to-move.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Default-loading-permissions.yml-before-plugins.patch Move "use-display-name-in-quit-message" to settings namespace (#6257) 2021-07-26 01:11:44 +02:00
Delay-Chunk-Unloads-based-on-Player-Movement.patch remove some more obf helpers 2021-06-16 10:48:25 -07:00
Deobfuscate-stacktraces-in-log-messages-crash-report.patch [ci skip] Add some helper methods to the ObfHelper util class (#6374) 2021-08-14 03:06:17 -07:00
Detail-more-information-in-watchdog-dumps.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Disable-Explicit-Network-Manager-Flushing.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
Disable-explosion-knockback.patch more patches 2021-06-11 17:57:04 -07:00
Disable-ice-and-snow.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
Disable-Scoreboards-for-non-players-by-default.patch more patches 2021-06-11 17:57:04 -07:00
Disable-spigot-tick-limiters.patch more patches 2021-06-11 17:57:04 -07:00
Disable-thunder.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
Distance-manager-tick-timings.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Do-less-work-if-we-have-a-custom-Bukkit-generator.patch even more work 2021-06-13 16:14:18 +02:00
Do-not-allow-bees-to-load-chunks-for-beehives.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Do-not-allow-the-server-to-unload-chunks-at-request-.patch Readd chunk priority patch, including many chunk system fixes from tuinity (#6488) 2021-08-25 19:16:27 -07:00
Do-not-allow-ticket-level-changes-when-updating-chun.patch Readd chunk priority patch, including many chunk system fixes from tuinity (#6488) 2021-08-25 19:16:27 -07:00
Do-not-allow-ticket-level-changes-while-unloading-pl.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Do-not-copy-visible-chunks.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Do-not-crash-from-invalid-ingredient-lists-in-Villag.patch more patches 2021-06-14 11:50:22 -07:00
Do-not-let-armorstands-drown.patch even even even even even even even even even even even 2021-06-12 02:01:04 -07:00
Do-not-let-the-server-load-chunks-from-newer-version.patch more work work work 2021-06-14 12:42:08 +02:00
Do-not-load-chunks-for-Pathfinding.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Do-not-run-close-logic-for-inventories-on-chunk-unlo.patch Readd chunk priority patch, including many chunk system fixes from tuinity (#6488) 2021-08-25 19:16:27 -07:00
Do-not-run-raytrace-logic-for-AIR.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Do-not-submit-profile-lookups-to-worldgen-threads.patch Readd chunk priority patch, including many chunk system fixes from tuinity (#6488) 2021-08-25 19:16:27 -07:00
Don-t-allow-digging-into-unloaded-chunks.patch Fix block action handling (#6213) 2021-07-17 14:46:46 +02:00
Don-t-allow-entities-to-ride-themselves-572.patch even even even even even even even even even even even 2021-06-12 02:01:04 -07:00
Don-t-allow-null-UUID-s-for-chat.patch more patches (#5827) 2021-06-14 01:37:14 -07:00
Don-t-apply-cramming-damage-to-players.patch Don't apply cramming damage to players (#5903) 2021-07-19 10:31:03 +01:00
Don-t-call-getItemMeta-on-hasItemMeta.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Don-t-check-chunk-for-portal-on-world-gen-entity-add.patch more work uwu 2021-06-14 11:46:59 +02:00
Don-t-check-ConvertSigns-boolean-every-sign-save.patch fix compile 2021-06-13 01:45:29 -07:00
Don-t-crash-if-player-is-attempted-to-be-removed-fro.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Don-t-fire-BlockFade-on-worldgen-threads.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
don-t-go-below-0-for-pickupDelay-breaks-picking-up-i.patch More work 2021-06-13 13:40:34 +02:00
Don-t-ignore-result-of-PlayerEditBookEvent.patch Fix "Don't ignore result of PlayerEditBookEvent" (#5923) 2021-06-21 00:29:59 -04:00
Don-t-let-fishinghooks-use-portals.patch even even even even even even even even even more changes 2021-06-12 00:24:28 -07:00
Don-t-load-Chunks-from-Hoppers-and-other-things.patch more patches 2021-06-13 12:29:58 -07:00
Don-t-lookup-fluid-state-when-raytracing.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Don-t-lookup-game-profiles-that-have-no-UUID-and-no-.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Don-t-mark-dirty-in-invalid-locations-SPIGOT-6086.patch fix compile issues 2021-06-14 17:10:25 +02:00
Don-t-move-existing-players-to-world-spawn.patch AT bullshit 2021-06-16 00:24:12 +02:00
Don-t-nest-if-we-don-t-need-to-when-cerealising-text.patch more patches 2021-06-11 17:57:04 -07:00
Don-t-read-neighbour-chunk-data-off-disk-when-conver.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Don-t-require-FACING-data.patch more work work work 2021-06-14 12:42:08 +02:00
Don-t-run-entity-collision-code-if-not-needed.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Don-t-save-empty-scoreboard-teams-to-scoreboard.dat.patch even more progress 2021-06-11 22:20:08 -07:00
Don-t-sleep-after-profile-lookups-if-not-needed.patch patches and patches 2021-06-13 01:26:58 -07:00
Don-t-tick-dead-players.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Drop-carried-item-when-player-has-disconnected.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Drop-falling-block-and-tnt-entities-at-the-specified.patch more patches 2021-06-11 15:37:16 -07:00
Duplicate-UUID-Resolve-Option.patch Updated Upstream (CraftBukkit) (#6504) 2021-08-27 11:51:18 +02:00
Empty-commands-shall-not-be-dispatched.patch more patches & fixes to existing patches 2021-06-14 12:17:47 -07:00
EnderDragon-Events.patch more patches 2021-06-12 14:31:35 -07:00
Enderman.teleportRandomly.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
EndermanAttackPlayerEvent.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
EndermanEscapeEvent.patch nuke a few more obfhelpers 2021-06-17 21:37:37 +02:00
Enforce-Sync-Player-Saves.patch even even even even even even even even even even even 2021-06-12 02:01:04 -07:00
Enhance-console-tab-completions-for-brigadier-comman.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Ensure-commands-are-not-ran-async.patch more patches 2021-06-11 17:57:04 -07:00
Ensure-disconnect-for-book-edit-is-called-on-main.patch Ensure disconnect for book edit is called on main 2021-06-22 20:00:11 +01:00
Ensure-Entity-AABB-s-are-never-invalid.patch Ensure shulker bounding box is updated (#6010) 2021-07-09 03:18:32 +02:00
Ensure-EntityRaider-respects-game-and-entity-rules-f.patch death to more obfhelpers 2021-06-17 22:20:03 +02:00
Ensure-inv-drag-is-in-bounds.patch more patches 2021-06-11 17:57:04 -07:00
Ensure-safe-gateway-teleport.patch progress 2021-06-13 22:32:56 -07:00
Entity-Activation-Range-2.0.patch [ci skip] Cleanup Timings v2 diff (#6523) 2021-08-30 02:02:24 -05:00
Entity-AddTo-RemoveFrom-World-Events.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
Entity-fromMobSpawner.patch Try even harder to get an origin world and avoid NPEs (Fixes #5931) 2021-06-22 11:54:49 +01:00
Entity-getEntitySpawnReason.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
Entity-isTicking.patch even more compile fixes 2021-06-14 17:17:08 +02:00
Entity-Jump-API.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Entity-load-save-limit-per-chunk.patch Log error for invalid entity-per-chunk-save-limit configs (#6522) 2021-08-29 23:19:43 -05:00
Entity-Origin-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
EntityMoveEvent.patch Don't fire entitymovevent for players. (#6402) 2021-08-15 19:37:42 +02:00
EntityPathfindEvent.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
EntityRegainHealthEvent-isFastRegen-API.patch some patches 2021-06-11 21:38:04 -07:00
Execute-chunk-tasks-mid-tick.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Expand-Explosions-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Expand-World.spawnParticle-API-and-add-Builder.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
ExperienceOrbMergeEvent.patch Re-add xp orb merging patches (#5823) 2021-06-13 22:37:57 -07:00
ExperienceOrbs-API-for-Reason-Source-Triggering-play.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Expose-Arrow-getItemStack.patch more patches (#5827) 2021-06-14 01:37:14 -07:00
Expose-attack-cooldown-methods-for-Player.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Expose-client-protocol-version-and-virtual-host.patch More more more work 2021-06-12 14:58:17 +02:00
Expose-game-version.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Expose-LivingEntity-hurt-direction.patch more patches 2021-06-14 11:50:22 -07:00
Expose-MinecraftServer-isRunning.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Expose-protocol-version.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Expose-server-CommandMap.patch more patches 2021-06-11 17:57:04 -07:00
Expose-the-Entity-Counter-to-allow-plugins-to-use-va.patch even moar workkkkk 2021-06-14 16:41:34 +02:00
Expose-the-internal-current-tick.patch more patches 2021-06-13 12:29:58 -07:00
Expose-Tracked-Players.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Expose-world-spawn-angle.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Extend-block-drop-capture-to-capture-all-items-added.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
Extend-Player-Interact-cancellation.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
Faster-redstone-torch-rapid-clock-removal.patch even more progress 2021-06-11 22:20:08 -07:00
Fill-Profile-Property-Events.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
Filter-bad-data-from-ArmorStand-and-SpawnEgg-items.patch even even even even even even even more work 2021-06-11 23:24:50 -07:00
Fire-BlockPistonRetractEvent-for-all-empty-pistons.patch patches and patches 2021-06-13 01:26:58 -07:00
Fire-event-on-GS4-query.patch Fix GS4 querying 2021-06-19 18:27:04 -07:00
Firework-API-s.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Fix-AdvancementDataPlayer-leak-due-from-quitting-ear.patch more work work work 2021-06-14 12:42:08 +02:00
Fix-anchor-respawn-acting-as-a-bed-respawn-from-the-.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#5904) 2021-06-20 21:25:59 +02:00
Fix-and-optimise-world-force-upgrading.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Fix-and-optimize-legacy-world-conversion.patch Fix and optimize legacy world conversion (#6473) 2021-08-28 00:07:12 -05:00
Fix-arrows-never-despawning-MC-125757.patch remove some more obf helpers 2021-06-16 10:48:25 -07:00
Fix-AssertionError-when-player-hand-set-to-empty-typ.patch more patches 2021-06-13 12:29:58 -07:00
Fix-block-drops-position-losing-precision-millions-o.patch Fix block drops position losing precision millions of blocks out (#6387) 2021-08-12 21:46:55 -07:00
fix-cancelling-block-falling-causing-client-desync.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Fix-Cancelling-BlockPlaceEvent-triggering-physics.patch patches 2021-06-11 20:07:57 -07:00
Fix-CB-call-to-changed-postToMainThread-method.patch More work 2021-06-13 13:40:34 +02:00
Fix-checkReach-check-for-Shulker-boxes.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Fix-Chunk-Post-Processing-deadlock-risk.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Fix-chunks-refusing-to-unload-at-low-TPS.patch Readd chunk priority patch, including many chunk system fixes from tuinity (#6488) 2021-08-25 19:16:27 -07:00
Fix-client-lag-on-advancement-loading.patch remove remaining POMs 2021-06-17 10:11:00 -07:00
Fix-client-rendering-skulls-from-same-user.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Fix-Codec-log-spam.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Fix-commands-from-signs-not-firing-command-events.patch Fix command signs (#6139) 2021-07-11 11:06:49 -07:00
Fix-Concurrency-issue-in-WeightedList.patch Updated Upstream (Bukkit/CraftBukkit) & more patches 2021-06-15 21:12:06 -07:00
fix-converting-txt-to-json-file.patch Readd chunk priority patch, including many chunk system fixes from tuinity (#6488) 2021-08-25 19:16:27 -07:00
Fix-CraftEntity-hashCode.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Fix-CraftPotionBrewer-cache.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Fix-CraftScheduler-runTaskTimerAsynchronously-Plugin.patch more patches (#5827) 2021-06-14 01:37:14 -07:00
Fix-CraftServer-isPrimaryThread-and-MinecraftServer-.patch More work 2021-06-13 13:40:34 +02:00
Fix-CraftSound-backwards-compatibility.patch more patches 2021-06-14 11:50:22 -07:00
Fix-CraftTeam-null-check.patch even MOAR progress 2021-06-14 06:45:16 -07:00
Fix-curing-zombie-villager-discount-exploit.patch death to more obfhelpers 2021-06-17 22:20:03 +02:00
Fix-Custom-Shapeless-Custom-Crafting-Recipes.patch patches and patches 2021-06-13 01:26:58 -07:00
Fix-dangerous-end-portal-logic.patch fixes 2021-06-14 21:16:18 -07:00
fix-dead-slime-setSize-invincibility.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Fix-deop-kicking-non-whitelisted-player-when-white-l.patch even moar workkkkk 2021-06-14 16:41:34 +02:00
Fix-duplicating-give-items-on-item-drop-cancel.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Fix-Entity-Teleportation-and-cancel-velocity-if-tele.patch Readd chunk priority patch, including many chunk system fixes from tuinity (#6488) 2021-08-25 19:16:27 -07:00
Fix-exploit-that-allowed-colored-signs-to-be-created.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#5904) 2021-06-20 21:25:59 +02:00
Fix-for-large-move-vectors-crashing-server.patch Readd chunk priority patch, including many chunk system fixes from tuinity (#6488) 2021-08-25 19:16:27 -07:00
Fix-harming-potion-dupe.patch more patches 2021-06-14 11:50:22 -07:00
Fix-hex-colors-not-working-in-some-kick-messages.patch even MOAR progress 2021-06-14 06:45:16 -07:00
Fix-incorrect-message-for-outdated-client.patch Fix incorrect message for outdated clients (#6160) 2021-07-13 21:49:38 -05:00
Fix-incorrect-status-dataconverter-for-pre-1.13-chun.patch Update Entity load/save limit per chunk 2021-06-16 21:00:32 -07:00
Fix-incosistency-issue-with-empty-map-items-in-CB.patch Fix some inconsistency issues with empty map items (#6304) 2021-08-01 16:55:25 +01:00
Fix-interact-event-not-being-called-in-adventure.patch more patches 2021-06-14 11:50:22 -07:00
Fix-invulnerable-end-crystals.patch Modify entity origin API to store world/pos seperatly 2021-06-16 06:36:02 +01:00
Fix-item-locations-dropped-from-campfires.patch more patches 2021-06-14 09:58:00 -07:00
Fix-items-not-falling-correctly.patch more patches 2021-06-13 12:29:58 -07:00
Fix-items-vanishing-through-end-portal.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Fix-lag-from-explosions-processing-dead-entities.patch more patches 2021-06-11 15:37:16 -07:00
Fix-last-firework-in-stack-not-having-effects-when-d.patch more patches 2021-06-13 12:29:58 -07:00
Fix-Light-Command.patch AT bullshit 2021-06-16 00:24:12 +02:00
Fix-Longstanding-Broken-behavior-of-PlayerJoinEvent.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#5904) 2021-06-20 21:25:59 +02:00
Fix-MC-117075-TE-Unload-Lag-Spike.patch Minor patch cleanup 2021-06-16 20:43:30 -05:00
Fix-MC-158900.patch even more work 2021-06-13 16:14:18 +02:00
Fix-MC-161754.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Fix-MC-187716-Use-configured-height.patch [ci skip] Remove extra newlines at EOF (#6127) 2021-07-08 18:40:24 -07:00
Fix-MerchantOffer-BuyB-Only-AssertionError.patch Fix MerchantOffer BuyB Only AssertionError (#6206) 2021-07-19 05:16:53 -04:00
Fix-missing-chunks-due-to-integer-overflow.patch more patches (#5827) 2021-06-14 01:37:14 -07:00
Fix-nerfed-slime-when-splitting.patch more patches 2021-06-14 11:50:22 -07:00
Fix-Non-Full-Status-Chunk-NBT-Memory-Leak.patch progress 2021-06-13 22:32:56 -07:00
Fix-Not-a-string-Map-Conversion-spam.patch remove some more obf helpers 2021-06-16 10:48:25 -07:00
Fix-numerous-item-duplication-issues-and-teleport-is.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Fix-Old-Sign-Conversion.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
Fix-Per-World-Difficulty-Remembering-Difficulty.patch more patches (#5827) 2021-06-14 01:37:14 -07:00
fix-PigZombieAngerEvent-cancellation.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Fix-piston-physics-inconsistency-MC-188840.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Fix-Player-spawnParticle-x-y-z-precision-loss.patch more patches 2021-06-14 09:58:00 -07:00
Fix-PlayerBucketEmptyEvent-result-itemstack.patch patches 2021-06-14 20:50:26 -07:00
Fix-PlayerDropItemEvent-using-wrong-item.patch Fix ITEM_DROPPED stat not working properly (#6331) 2021-08-06 18:46:25 +02:00
Fix-PlayerItemConsumeEvent-cancelling-properly.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
fix-PlayerItemHeldEvent-firing-twice.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Fix-PotionEffect-ignores-icon-flag.patch progress 2021-06-13 22:32:56 -07:00
Fix-PotionSplashEvent-for-water-splash-potions.patch final patches from remapped and unmapped 2021-06-14 21:55:46 -07:00
Fix-reducedDebugInfo-not-initialized-on-client.patch patches 2021-06-11 20:07:57 -07:00
Fix-regex-mistake-in-CB-NBT-int-deserialization.patch more work work work 2021-06-14 12:42:08 +02:00
Fix-return-value-of-Block-applyBoneMeal-always-being.patch Fix return value of Block#applyBoneMeal always being false (#6030) 2021-06-28 18:37:44 -07:00
Fix-sand-duping.patch more patches (#5827) 2021-06-14 01:37:14 -07:00
Fix-some-rails-connecting-improperly.patch death to more obfhelpers 2021-06-17 22:20:03 +02:00
Fix-sounds-when-item-frames-are-modified-MC-123450.patch More work 2021-06-13 13:40:34 +02:00
Fix-SpawnChangeEvent-not-firing-for-all-use-cases.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Fix-spawning-of-hanging-entities-that-are-not-ItemFr.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Fix-SPIGOT-5824-Bukkit-world-container-is-not-used.patch more work work work 2021-06-14 12:42:08 +02:00
Fix-SPIGOT-5885-Unable-to-disable-advancements.patch more work work work 2021-06-14 12:42:08 +02:00
Fix-SPIGOT-5989.patch more work work work 2021-06-14 12:42:08 +02:00
Fix-SpongeAbsortEvent-handling.patch patches and patches 2021-06-13 01:26:58 -07:00
Fix-stuck-in-sneak-when-changing-worlds-MC-10657.patch more patches 2021-06-13 12:29:58 -07:00
Fix-test-not-bootstrapping.patch Add System.out.println catcher (#6278) 2021-08-02 00:07:48 -07:00
Fix-this-stupid-bullshit.patch Updated Upstream (Bukkit/CraftBukkit) 2021-08-04 16:26:56 +01:00
Fix-villager-boat-exploit.patch more patches 2021-06-14 12:58:32 -07:00
Fix-villager-trading-demand-MC-163962.patch patches 2021-06-13 23:45:29 -07:00
Fix-World-isChunkGenerated-calls.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Fixed-TileEntityBell-memory-leak.patch more patches 2021-06-14 09:58:00 -07:00
Fixes-kick-event-leave-message-not-being-sent.patch fixed kick event leave message (#4766) 2021-07-09 12:03:28 -07:00
Flag-to-disable-the-channel-limit.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
force-entity-dismount-during-teleportation.patch patches and patches 2021-06-13 01:26:58 -07:00
forced-whitelist-use-configurable-kick-message.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Further-improve-server-tick-loop.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Generator-Settings.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
getPlayerUniqueId-API.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Guard-against-serializing-mismatching-chunk-coordina.patch more patches 2021-06-13 12:29:58 -07:00
Guardian-beam-workaround.patch more patches & fixes to existing patches 2021-06-14 12:17:47 -07:00
Handle-Item-Meta-Inconsistencies.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Handle-Large-Packets-disconnecting-client.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
handle-NaN-health-absorb-values-and-repair-bad-data.patch [ci skip] Remove extra newlines at EOF (#6127) 2021-07-08 18:40:24 -07:00
Handle-Oversized-Tile-Entities-in-chunks.patch Work 2021-06-13 11:41:07 +02:00
handle-PacketPlayInKeepAlive-async.patch More more more work 2021-06-12 14:58:17 +02:00
Handle-plugin-prefixes-using-Log4J-configuration.patch Minor patch cleanup 2021-06-16 20:43:30 -05:00
Have-CraftMerchantCustom-emit-PlayerPurchaseEvent.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Here-s-Johnny.patch remove some more obf helpers 2021-06-16 10:48:25 -07:00
Hide-sync-chunk-writes-behind-flag.patch more patches (#5827) 2021-06-14 01:37:14 -07:00
Highly-optimise-single-and-multi-AABB-VoxelShapes-an.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Honor-EntityAgeable.ageLock.patch patches 2021-06-12 23:48:25 -07:00
Hook-into-CB-plugin-rewrites.patch patches 2021-06-12 23:48:25 -07:00
Implement-alternative-item-despawn-rate.patch Fix custom world height in xray patch 2021-06-16 15:14:19 +02:00
Implement-an-API-for-CanPlaceOn-and-CanDestroy-NBT-v.patch remove remaining POMs 2021-06-17 10:11:00 -07:00
Implement-API-to-expose-exact-interaction-point.patch more patches & fixes to existing patches 2021-06-14 12:17:47 -07:00
Implement-API-to-get-Material-from-Boats-and-Minecar.patch more patches 2021-06-14 11:50:22 -07:00
Implement-BlockPreDispenseEvent.patch more patches 2021-06-14 12:58:32 -07:00
Implement-Brigadier-Mojang-API.patch [ci skip] Cleanup diff in Async command map building (#6492) 2021-08-26 11:41:22 -05:00
Implement-Chunk-Priority-Urgency-System-for-Chunks.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Implement-CraftBlockSoundGroup.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6245) 2021-07-22 11:11:56 -07:00
Implement-ensureServerConversions-API.patch remove some more obf helpers 2021-06-16 10:48:25 -07:00
Implement-EntityKnockbackByEntityEvent.patch Call EntityKnockbackByEntityEvent for RamTarget Behavior (#6273) 2021-07-26 09:41:26 -07:00
Implement-EntityTeleportEndGatewayEvent.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Implement-Expanded-ArmorStand-API.patch start adding in ATs 2021-06-15 21:44:22 +02:00
Implement-extended-PaperServerListPingEvent.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
Implement-furnace-cook-speed-multiplier-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6209) 2021-07-16 18:48:27 -07:00
Implement-getI18NDisplayName.patch remove some more obf helpers 2021-06-16 10:48:25 -07:00
Implement-Keyed-on-World.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Implement-methods-to-convert-between-Component-and-B.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Implement-Mob-Goal-API.patch Fix Mob Goal Leak (#6394) 2021-08-22 06:19:45 +02:00
implement-optional-per-player-mob-spawns.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Implement-Paper-VersionChecker.patch more patches 2021-06-11 15:37:16 -07:00
Implement-Player-Client-Options-API.patch Implement Translatable in appropriate places (#6248) 2021-08-13 21:11:12 -07:00
Implement-PlayerFlowerPotManipulateEvent.patch more patches 2021-06-14 11:50:22 -07:00
Implement-PlayerLocaleChangeEvent.patch some patches 2021-06-11 21:38:04 -07:00
Implement-PlayerPostRespawnEvent.patch Work 2021-06-13 11:41:07 +02:00
Implement-TargetHitEvent.patch more patches 2021-06-14 11:50:22 -07:00
Implement-World.getEntity-UUID-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Implemented-BlockFailedDispenseEvent.patch more patches & fixes to existing patches 2021-06-14 12:17:47 -07:00
Improve-BlockPosition-inlining.patch more patches 2021-06-12 14:31:35 -07:00
Improve-boat-collision-performance.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Improve-Chunk-Status-Transition-Speed.patch Readd chunk priority patch, including many chunk system fixes from tuinity (#6488) 2021-08-25 19:16:27 -07:00
improve-CraftWorld-isChunkLoaded.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Improve-death-events.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6379) 2021-08-13 10:08:34 -07:00
Improve-EntityShootBowEvent.patch start adding in ATs 2021-06-15 21:44:22 +02:00
Improve-EntityTargetLivingEntityEvent-for-1.16-mobs.patch fix StopAttackingIfTargetInvalid behavior 2021-06-15 16:54:59 -07:00
Improve-inlinig-for-some-hot-IBlockData-methods.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Improve-Legacy-Component-serialization-size.patch more patches (#5827) 2021-06-14 01:37:14 -07:00
Improve-Log4J-Configuration-Plugin-Loggers.patch More more more work 2021-06-12 14:58:17 +02:00
Improve-Maps-in-item-frames-performance-and-bug-fixe.patch Fix some inconsistency issues with empty map items (#6304) 2021-08-01 16:55:25 +01:00
Improve-Server-Thread-Pool-and-Thread-Priorities.patch AT bullshit 2021-06-16 00:24:12 +02:00
Improve-ServerGUI.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Improve-the-Saddle-API-for-Horses.patch More more work 2021-06-12 13:18:01 +02:00
Improved-Async-Task-Scheduler.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6222) 2021-07-18 00:41:53 -07:00
Improved-Watchdog-Support.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Increase-Light-Queue-Size.patch more patches 2021-06-13 12:29:58 -07:00
incremental-chunk-saving.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Incremental-player-saving.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Inline-shift-direction-fields.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Introduce-beacon-activation-deactivation-events.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Inventory-close.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Inventory-getHolder-method-without-block-snapshot.patch more patches (#5827) 2021-06-14 01:37:14 -07:00
Inventory-removeItemAnySlot.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
InventoryCloseEvent-Reason-API.patch Updated Upstream (Bukkit/CraftBukkit) 2021-08-04 16:26:56 +01:00
Item-canEntityPickup.patch More work 2021-06-12 12:26:21 +02:00
Item-no-age-no-player-pickup.patch more patches 2021-06-14 09:58:00 -07:00
Item-Rarity-API.patch Add ItemRarity test (#6247) 2021-07-21 21:48:24 -07:00
ItemStack-getMaxItemUseDuration.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
ItemStack-repair-check-API.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Lag-compensate-block-breaking.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Lag-compensate-eating.patch more patches 2021-06-13 12:29:58 -07:00
Lazily-track-plugin-scoreboards-by-default.patch even moar workkkkk 2021-06-14 16:41:34 +02:00
Limit-Client-Sign-length-more.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#5904) 2021-06-20 21:25:59 +02:00
Limit-item-frame-cursors-on-maps.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Limit-recipe-packets.patch more patches 2021-06-14 11:50:22 -07:00
Line-Of-Sight-Changes.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
living-entity-allow-attribute-registration.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
LivingEntity-Hand-Raised-Item-Use-API.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
LivingEntity-setKiller.patch AT bullshit 2021-06-16 00:24:12 +02:00
Load-Chunks-for-Login-Asynchronously.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Log-when-the-async-catcher-is-tripped.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
LootTable-API-Replenishable-Lootables-Feature.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Make-CallbackExecutor-strict-again.patch Readd chunk priority patch, including many chunk system fixes from tuinity (#6488) 2021-08-25 19:16:27 -07:00
Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Make-EnderDragon-implement-Mob.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Make-EntityUnleashEvent-cancellable.patch Make EntityUnleashEvent cancellable (#4993) 2021-08-13 11:15:43 -07:00
Make-hoppers-respect-inventory-max-stack-size.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Make-item-validations-configurable.patch final patches from remapped and unmapped 2021-06-14 21:55:46 -07:00
Make-legacy-ping-handler-more-reliable.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Make-max-squid-spawn-height-configurable.patch even more wooooooooooooooooooooooooork uwu 2021-06-12 17:06:20 +02:00
Make-schedule-command-per-world.patch Updated Upstream (CraftBukkit) (#6260) 2021-07-23 19:33:05 -07:00
Make-shield-blocking-delay-configurable.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Make-sure-inlined-getChunkAt-has-inlined-logic-for-l.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Make-targetSize-more-aggressive-in-the-chunk-unload-.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Make-the-default-permission-message-configurable.patch Use configured no permission message in PaperCommand (#6484) 2021-08-25 15:34:15 -05:00
Make-the-GUI-graph-fancier.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Manually-inline-methods-in-BlockPosition.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Maps-shouldn-t-load-chunks.patch patches 2021-06-13 23:45:29 -07:00
MC-4-Fix-item-position-desync.patch Ensure shulker bounding box is updated (#6010) 2021-07-09 03:18:32 +02:00
MC-29274-Fix-Wither-hostility-towards-players.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
MC-50319-Check-other-worlds-for-shooter-of-projectil.patch patches 2021-06-12 23:48:25 -07:00
MC-135506-Experience-should-save-as-Integers.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
MC-145260-Fix-Whitelist-On-Off-inconsistency.patch Work 2021-06-13 11:41:07 +02:00
MC-145656-Fix-Follow-Range-Initial-Target.patch more patches 2021-06-13 12:29:58 -07:00
MC-Dev-fixes.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
MC-Utils.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Merchant-getRecipes-should-return-an-immutable-list.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
misc-debugging-dumps.patch Add invalid player data to misc debug dumps 2021-06-20 15:06:37 +01:00
Missing-Entity-Behavior-API.patch Add Missing Entity API: Cat (#5744) 2021-08-27 14:16:41 -04:00
Mob-Pathfinding-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Mob-Spawner-API-Enhancements.patch More work 2021-06-13 13:40:34 +02:00
More-Enchantment-API.patch Implement Translatable in appropriate places (#6248) 2021-08-13 21:11:12 -07:00
More-Lidded-Block-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
More-lightning-API.patch AT bullshit 2021-06-16 00:24:12 +02:00
More-World-API.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Move-BlockPistonRetractEvent-to-fix-duplication.patch Fix BlockPistonRetractEvent firing multiple times (#6467) 2021-08-22 23:54:55 +10:00
Move-player-to-spawn-point-if-spawn-in-unloaded-worl.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Move-range-check-for-block-placing-up.patch more work uwu 2021-06-14 11:46:59 +02:00
Name-craft-scheduler-threads-according-to-the-plugin.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
No-Tick-view-distance-implementation.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Not-implemeneted.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Ocelot-despawns-should-honor-nametags-and-leash.patch More more work 2021-06-12 13:18:01 +02:00
offset-item-frame-ticking.patch even more work 2021-06-13 16:14:18 +02:00
Only-count-Natural-Spawned-mobs-towards-natural-spaw.patch even more work 2021-06-13 16:14:18 +02:00
Only-process-BlockPhysicsEvent-if-a-plugin-has-a-lis.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
Only-refresh-abilities-if-needed.patch more patches 2021-06-11 15:37:16 -07:00
Only-send-Dragon-Wither-Death-sounds-to-same-world.patch even more progress 2021-06-11 22:20:08 -07:00
Only-set-despawnTimer-for-Wandering-Traders-spawned-.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Oprimise-map-impl-for-tracked-players.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Optimise-ArraySetSorted-removeIf.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Optimise-BlockSoil-nearby-water-lookup.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Optimise-BlockState-s-hashCode-equals.patch even even more progress 2021-06-11 23:02:49 -07:00
Optimise-Chunk-getFluid.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Optimise-chunk-tick-iteration.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Optimise-collision-checking-in-player-move-packet-ha.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Optimise-general-POI-access.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Optimise-getChunkAt-calls-for-loaded-chunks.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Optimise-getType-calls.patch more patches 2021-06-14 09:58:00 -07:00
Optimise-IEntityAccess-getPlayerByUUID.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Optimise-nearby-player-lookups.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Optimise-non-flush-packet-sending.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Optimise-random-block-ticking.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Optimise-TickListServer-by-rewriting-it.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Optimise-WorldServer-notify.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Optimize-Biome-Mob-Lookups-for-Mob-Spawning.patch port some patches (#5837) 2021-06-15 01:44:37 -04:00
Optimize-Bit-Operations-by-inlining.patch patches 2021-06-13 23:45:29 -07:00
Optimize-BlockPosition-helper-methods.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Optimize-brigadier-child-sorting-performance.patch Vanilla command permission fixes (fixes #6085) (#6490) 2021-08-25 17:20:24 -05:00
Optimize-call-to-getFluid-for-explosions.patch more patches 2021-06-13 12:29:58 -07:00
Optimize-Captured-TileEntity-Lookup.patch More work 2021-06-13 13:40:34 +02:00
Optimize-Collision-to-not-load-chunks.patch Fix collisions during world generation (#6129) 2021-07-09 03:16:57 -07:00
Optimize-CraftBlockData-Creation.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Optimize-DataBits.patch patches 2021-06-11 20:07:57 -07:00
Optimize-Dynamic-get-Missing-Keys.patch more patches 2021-06-14 11:50:22 -07:00
Optimize-entity-tracker-passenger-checks.patch Optimize entity tracker passenger checks (#6361) 2021-08-09 18:36:45 +00:00
Optimize-explosions.patch more patches 2021-06-11 15:37:16 -07:00
Optimize-Hoppers.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Optimize-indirect-passenger-iteration.patch [ci skip] Drop "Fix CME on adding a passenger in CreatureSpawnEvent" (#6384) 2021-08-14 03:01:07 -07:00
Optimize-IntIdentityHashBiMiap-nextId.patch more patches 2021-06-12 14:31:35 -07:00
Optimize-isOutsideRange-to-use-distance-maps.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Optimize-isValidLocation-getType-and-getBlockData-fo.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Optimize-ItemStack.isEmpty.patch even even even even even even even even even more changes 2021-06-12 00:24:28 -07:00
Optimize-MappedRegistry.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Optimize-Network-Manager-and-add-advanced-packet-sup.patch Definitely readd this patch for the first time 2021-06-16 13:07:43 +02:00
Optimize-NetworkManager-Exception-Handling.patch even moar workkkkk 2021-06-14 16:41:34 +02:00
Optimize-NibbleArray-to-use-pooled-buffers.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Optimize-Pathfinder-Remove-Streams-Optimized-collect.patch update Optimize Pathfinder - Remove Streams / Optimized collections 2021-06-15 00:43:03 -07:00
Optimize-Pathfinding.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Optimize-redstone-algorithm.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Optimize-sending-packets-to-nearby-locations-sounds-.patch patches 2021-06-13 23:45:29 -07:00
Optimize-ServerLevels-chunk-level-checking-methods.patch Updated Upstream (CraftBukkit) (#6504) 2021-08-27 11:51:18 +02:00
Optimize-the-advancement-data-player-iteration-to-be.patch more work uwu 2021-06-14 11:46:59 +02:00
Optimize-UserCache-Thread-Safe.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Optimize-Voxel-Shape-Merging.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Optimize-World-Time-Updates.patch patches and patches 2021-06-13 01:26:58 -07:00
Optimize-World.isLoaded-BlockPosition-Z.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Optimize-WorldBorder-collision-checks-and-air.patch remove some more obf helpers 2021-06-16 10:48:25 -07:00
Option-for-maximum-exp-value-when-merging-orbs.patch Re-add xp orb merging patches (#5823) 2021-06-13 22:37:57 -07:00
Option-to-prevent-armor-stands-from-doing-entity-loo.patch more patches 2021-06-12 14:31:35 -07:00
Option-to-remove-corrupt-tile-entities.patch even even more progress 2021-06-11 23:02:49 -07:00
Option-to-use-vanilla-per-world-scoreboard-coloring-.patch patches 2021-06-11 20:07:57 -07:00
Optional-TNT-doesn-t-move-in-water.patch even more progress 2021-06-11 22:20:08 -07:00
Paper-config-files.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Paper-dumpitem-command.patch check if sender is a player in paper dumpitem command, closes #5858 2021-06-17 20:13:55 +02:00
Paper-Metrics.patch fix: the server compiles 2021-06-11 20:33:36 +02:00
Per-Player-View-Distance-API-placeholders.patch even more progress 2021-06-11 22:20:08 -07:00
Pillager-patrol-spawn-settings-and-per-player-option.patch death to more obfhelpers 2021-06-17 22:20:03 +02:00
Player-affects-spawning-API.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Player-Chunk-Load-Unload-Events.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Player-elytra-boost-API.patch more patches 2021-06-14 09:58:00 -07:00
Player-Tab-List-and-Title-APIs.patch remove some more obf helpers 2021-06-16 10:48:25 -07:00
Player.setPlayerProfile-API.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
PlayerAdvancementCriterionGrantEvent.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
PlayerAttemptPickupItemEvent.patch More more work 2021-06-12 13:18:01 +02:00
PlayerDeathEvent-getItemsToKeep.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
PlayerDeathEvent-shouldDropExperience.patch more patches 2021-06-13 12:29:58 -07:00
PlayerElytraBoostEvent.patch more patches 2021-06-12 14:31:35 -07:00
PlayerLaunchProjectileEvent.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#5904) 2021-06-20 21:25:59 +02:00
PlayerNaturallySpawnCreaturesEvent.patch Don't not shuffle visible chunks (#6283) 2021-08-02 10:00:31 +02:00
PlayerPickupExperienceEvent.patch even more wooooooooooooooooooooooooork uwu 2021-06-12 17:06:20 +02:00
PlayerPickupItemEvent-setFlyAtPlayer.patch More work 2021-06-12 12:26:21 +02:00
PlayerReadyArrowEvent.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
PlayerTeleportEndGatewayEvent.patch even even even even even even even even even even even 2021-06-12 02:01:04 -07:00
PortalCreateEvent-needs-to-know-its-entity.patch even MOAR progress 2021-06-14 06:45:16 -07:00
Potential-bed-API.patch progress 2021-06-13 22:32:56 -07:00
PreCreatureSpawnEvent.patch [ci skip] Remove extra newlines at EOF (#6127) 2021-07-08 18:40:24 -07:00
PreSpawnerSpawnEvent.patch port some patches (#5837) 2021-06-15 01:44:37 -04:00
Prevent-AFK-kick-while-watching-end-credits.patch Prevent AFK kick while watching end credits (#6239). (#6265) 2021-08-02 10:43:56 +02:00
Prevent-bees-loading-chunks-checking-hive-position.patch more patches 2021-06-13 12:29:58 -07:00
Prevent-chunk-loading-from-Fluid-Flowing.patch even even even even more work 2021-06-12 21:03:02 -07:00
Prevent-consuming-the-wrong-itemstack.patch even more work 2021-06-13 16:14:18 +02:00
Prevent-Double-PlayerChunkMap-adds-crashing-server.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
Prevent-Enderman-from-loading-chunks.patch patches and patches 2021-06-13 01:26:58 -07:00
Prevent-Frosted-Ice-from-loading-holding-chunks.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Prevent-grindstones-from-overstacking-items.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Prevent-headless-pistons-from-being-created.patch Updated Upstream (CraftBukkit) 2021-07-09 16:08:42 +02:00
Prevent-logins-from-being-processed-when-the-player-.patch even more wooooooooooooooooooooooooork uwu 2021-06-12 17:06:20 +02:00
Prevent-Mob-AI-Rules-from-Loading-Chunks.patch even even even even more work 2021-06-12 21:03:02 -07:00
Prevent-mob-spawning-from-loading-generating-chunks.patch even even even even more work 2021-06-12 21:03:02 -07:00
Prevent-opening-inventories-when-frozen.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Prevent-Pathfinding-out-of-World-Border.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Prevent-position-desync-in-playerconnection-causing-.patch more patches (#5827) 2021-06-14 01:37:14 -07:00
Prevent-rayTrace-from-loading-chunks.patch patches and patches 2021-06-13 01:26:58 -07:00
Prevent-sync-chunk-loads-when-villagers-try-to-find-.patch more patches 2021-06-13 12:29:58 -07:00
Prevent-teleporting-dead-entities.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Prevent-tile-entity-and-entity-crashes.patch Deobfuscate stacktraces in log messages using a RewriteAppender and a custom RewritePolicy (#5926) 2021-06-21 01:09:18 -07:00
Prevent-unload-calls-removing-tickets-for-sync-loads.patch Readd chunk priority patch, including many chunk system fixes from tuinity (#6488) 2021-08-25 19:16:27 -07:00
Print-Error-details-when-failing-to-save-player-data.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Profile-Lookup-Events.patch More more work 2021-06-12 13:18:01 +02:00
ProfileWhitelistVerifyEvent.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#5904) 2021-06-20 21:25:59 +02:00
Properly-fix-item-duplication-bug.patch even even even even even even even even even even even 2021-06-12 02:01:04 -07:00
Properly-handle-async-calls-to-restart-the-server.patch even even even even even even even even even even even 2021-06-12 02:01:04 -07:00
Protect-Bedrock-and-End-Portal-Frames-from-being-des.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
provide-a-configurable-option-to-disable-creeper-lin.patch More work 2021-06-12 12:26:21 +02:00
Provide-E-TE-Chunk-count-stat-methods.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
RangedEntity-API.patch AbstractSkeleton should extend RangedEntity (#6087) 2021-07-05 22:48:08 -05:00
Rate-options-and-timings-for-sensors-and-behaviors.patch [ci skip] Add some helper methods to the ObfHelper util class (#6374) 2021-08-14 03:06:17 -07:00
Reduce-allocation-of-Vec3D-by-entity-tracker.patch progress 2021-06-13 22:32:56 -07:00
Reduce-blockpos-allocation-from-pathfinding.patch more patches 2021-06-14 09:58:00 -07:00
Reduce-Either-Optional-allocation.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Reduce-memory-footprint-of-NBTTagCompound.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Reduce-MutableInt-allocations-from-light-engine.patch progress 2021-06-13 22:32:56 -07:00
Reduce-worldgen-thread-worker-count-for-low-core-cou.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Refresh-player-inventory-when-cancelling-PlayerInter.patch more patches 2021-06-12 14:31:35 -07:00
Remap-fixes.patch Minor patch cleanup 2021-06-16 20:43:30 -05:00
Remote-Connections-shouldn-t-hold-up-shutdown.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Remove-CraftScheduler-Async-Task-Debugger.patch even even even even even even even even even even even 2021-06-12 02:01:04 -07:00
Remove-FishingHook-reference-on-Craft-Entity-removal.patch even even more progress 2021-06-11 23:02:49 -07:00
Remove-invalid-mob-spawner-tile-entities.patch even even more progress 2021-06-11 23:02:49 -07:00
Remove-Metadata-on-reload.patch Updated Upstream (CraftBukkit/Spigot) 2021-06-15 01:38:57 -07:00
remove-null-possibility-for-getServer-singleton.patch some patches 2021-06-11 21:38:04 -07:00
Remove-ProjectileHitEvent-call-when-fireballs-dead.patch more patches 2021-06-14 12:58:32 -07:00
Remove-some-streams-from-structures.patch Add back stream patch (#5838) 2021-06-14 22:38:36 -07:00
Remove-stale-POIs.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6149) 2021-07-11 00:01:29 -07:00
Remove-streams-for-villager-AI.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Remove-streams-from-classes-related-villager-gossip.patch remove some more obf helpers 2021-06-16 10:48:25 -07:00
Remove-streams-from-Mob-AI-System.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Remove-streams-from-PairedQueue.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Remove-streams-from-SensorNearest.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Replace-player-chunk-loader-system.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Replace-ticket-level-propagator.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Reset-Ender-Crystals-on-Dragon-Spawn.patch more patches 2021-06-14 09:58:00 -07:00
Reset-players-airTicks-on-respawn.patch Updated Upstream (Bukkit/CraftBukkit) 2021-08-04 16:26:56 +01:00
Reset-shield-blocking-on-dimension-change.patch more patches 2021-06-14 12:58:32 -07:00
Reset-spawner-timer-when-spawner-event-is-cancelled.patch More more more work 2021-06-12 14:58:17 +02:00
Respect-despawn-rate-in-item-merge-check.patch Respect despawn rate in merge check (#6428) 2021-08-21 16:32:07 +02:00
Restore-custom-InventoryHolder-support.patch patches and patches 2021-06-13 01:26:58 -07:00
Restore-vanlla-default-mob-spawn-range-and-water-ani.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Restrict-vanilla-teleport-command-to-valid-locations.patch EVEN MOOOOOAAAAAAARRRRRRR patches :) (#5820) 2021-06-13 18:06:38 -07:00
Retain-block-place-order-when-capturing-blockstates.patch more patches 2021-06-14 09:58:00 -07:00
Return-chat-component-with-empty-text-instead-of-thr.patch more patches 2021-06-14 12:58:32 -07:00
revert-serverside-behavior-of-keepalives.patch deprecate all obfhelpers 2021-06-17 21:52:26 +02:00
Rewrite-dataconverter-system.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Rewrite-entity-bounding-box-lookup-calls.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Rewrite-LogEvents-to-contain-the-source-jars-in-stac.patch Use AsyncAppender instead of AsyncLoggerContextSelector to keep loggging IO off main thread (#6381) 2021-08-12 10:55:20 -07:00
Rewrite-the-light-engine.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Sanitise-RegionFileCache-and-make-configurable.patch AT bullshit 2021-06-16 00:24:12 +02:00
Sanitize-ResourceLocation-error-logging.patch [ci skip] Cleanup diff in Async command map building (#6492) 2021-08-26 11:41:22 -05:00
Seed-based-feature-search.patch Enable chunk load for feature search by default 2021-06-16 22:42:48 +02:00
Send-attack-SoundEffects-only-to-players-who-can-see.patch More more more work 2021-06-12 14:58:17 +02:00
Send-empty-commands-if-tab-completion-is-disabled.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Send-full-pos-packets-for-hard-colliding-entities.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Separate-lookup-locking-from-state-access-in-UserCac.patch Readd chunk priority patch, including many chunk system fixes from tuinity (#6488) 2021-08-25 19:16:27 -07:00
Server-Tick-Events.patch More work 2021-06-13 13:40:34 +02:00
Set-area-affect-cloud-rotation.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6457) 2021-08-25 09:59:26 +02:00
Set-AsyncAppender-dispatch-thread-to-be-a-daemon-thr.patch Set AsyncAppender dispatch thread to be a daemon thread (#6424) 2021-08-18 13:47:29 -05:00
Set-cap-on-JDK-per-thread-native-byte-buffer-cache.patch patches 2021-06-13 19:40:12 -07:00
Set-spigots-verbose-world-setting-to-false-by-def.patch more patches 2021-06-14 11:50:22 -07:00
Set-Zombie-last-tick-at-start-of-drowning-process.patch Work 2021-06-13 11:41:07 +02:00
Setup-Gradle-project.patch Fix CB lib relocation (#6454) 2021-08-22 10:22:57 -07:00
Shoulder-Entities-Release-API.patch More more work 2021-06-12 13:18:01 +02:00
Show-blockstate-location-if-we-failed-to-read-it.patch even more work 2021-06-13 16:14:18 +02:00
Show-Paper-in-client-crashes-server-lists-and-Mojang.patch Updated Upstream (Bukkit/CraftBukkit) 2021-08-04 16:26:56 +01:00
Significantly-improve-performance-of-the-end-generat.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
SkeletonHorse-Additions.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Skip-distance-map-update-when-spawning-disabled.patch more patches 2021-06-14 12:58:32 -07:00
Slime-Pathfinder-Events.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Spawn-player-in-correct-world-on-login.patch more work uwu 2021-06-14 11:46:59 +02:00
Stinger-API.patch Add bee stinger API (#5962) 2021-07-28 20:36:53 -04:00
Stop-copy-on-write-operations-for-updating-light-dat.patch Port Stop-copy-on-write-operations-for-updating-light-dat 2021-06-15 17:43:00 +02:00
stop-firing-pressure-plate-EntityInteractEvent-for-i.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
String-based-Action-Bar-API.patch added remaining hunks from chat/title packets (#5844) 2021-06-15 16:41:38 -07:00
Support-components-in-ItemMeta.patch more work uwu 2021-06-14 11:46:59 +02:00
Support-old-UUID-format-for-NBT.patch remove more obfhelpers 2021-06-17 14:39:36 -07:00
Synchronize-PalettedContainer-instead-of-ReentrantLo.patch Refactor Anti-Xray and make some fixes to it (#5938) 2021-06-23 10:39:02 +02:00
System-property-for-disabling-watchdoge.patch even more progress 2021-06-11 22:20:08 -07:00
Tameable-getOwnerUniqueId-API.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
Thread-Safe-Vanilla-Command-permission-checking.patch Replace ThreadLocal with ConcurrentHashMap in CommandSourceStack (#6325) 2021-08-21 20:45:40 -07:00
Throw-proper-exception-on-empty-JsonList-file.patch tons of patches (#5835) 2021-06-14 19:59:31 -07:00
Time-scoreboard-search.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Timings-v2.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Toggle-for-removing-existing-dragon.patch more patches 2021-06-14 09:58:00 -07:00
Toggleable-player-crits-helps-mitigate-hacked-client.patch more patches (#5807) 2021-06-12 09:56:13 -07:00
Tracking-Range-Improvements.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Turtle-API.patch deprecate all obfhelpers 2021-06-17 21:52:26 +02:00
Unset-Ignited-flag-on-cancel-of-Explosion-Event.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Update-entity-Metadata-for-all-tracked-players.patch add entity debug info patch back 2021-06-13 23:41:01 -07:00
Update-itemstack-legacy-name-and-lore.patch death to more obfhelpers 2021-06-17 22:20:03 +02:00
Upstream-config-migrations.patch Add config migration for named entity death logging option (#6390) 2021-08-13 13:24:25 -07:00
Use-a-Queue-for-Queueing-Commands.patch more patches (#5811) 2021-06-12 16:45:00 -07:00
Use-a-Shared-Random-for-Entities.patch even even even even even even even more work 2021-06-11 23:24:50 -07:00
Use-AsyncAppender-to-keep-logging-IO-off-main-thread.patch Use AsyncAppender instead of AsyncLoggerContextSelector to keep loggging IO off main thread (#6381) 2021-08-12 10:55:20 -07:00
use-CB-BlockState-implementations-for-captured-block.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Use-ConcurrentHashMap-in-JsonList.patch deprecate all obfhelpers 2021-06-17 21:52:26 +02:00
Use-distance-map-to-optimise-entity-tracker.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Use-getChunkIfLoadedImmediately-in-places.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Use-hash-table-for-maintaing-changed-block-set.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Use-proper-max-length-when-serialising-BungeeCord-te.patch Work 2021-06-13 11:41:07 +02:00
Use-seed-based-lookup-for-Treasure-Maps-Fixes-lag-fr.patch patches 2021-06-13 23:45:29 -07:00
Use-TerminalConsoleAppender-for-console-improvements.patch Updated Upstream (Bukkit/CraftBukkit/Spigot) (#6379) 2021-08-13 10:08:34 -07:00
Use-UserCache-for-player-heads.patch more patches 2021-06-11 17:57:04 -07:00
Use-Vanilla-Minecart-Speeds.patch patches and patches 2021-06-13 01:26:58 -07:00
Use-Velocity-compression-and-cipher-natives.patch Merge tuinity (#6413) 2021-08-31 04:02:11 -07:00
Validate-PickItem-Packet-and-kick-for-invalid.patch Update to Minecraft 1.17.1 (#6097) 2021-07-07 08:52:40 +02:00
Validate-tripwire-hook-placement-before-update.patch MOAR PATCHES 2021-06-13 15:05:18 -07:00
Vanilla-command-permission-fixes.patch Vanilla command permission fixes (fixes #6085) (#6490) 2021-08-25 17:20:24 -05:00
Vanished-players-don-t-have-rights.patch more patches 2021-06-12 14:31:35 -07:00
Vex-get-setSummoner-API.patch more patches 2021-06-12 14:31:35 -07:00
Villager-resetOffers.patch more patches 2021-06-14 09:58:00 -07:00
Villager-Restocks-API.patch death to more obfhelpers 2021-06-17 22:20:03 +02:00
Wait-for-Async-Tasks-during-shutdown.patch progress 2021-06-13 22:32:56 -07:00
WitchConsumePotionEvent.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
WitchReadyPotionEvent.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
WitchThrowPotionEvent.patch more patches (#5808) 2021-06-12 12:30:37 -07:00
Workaround-for-setting-passengers-on-players.patch patches 2021-06-11 20:07:57 -07:00
Workaround-for-vehicle-tracking-issue-on-disconnect.patch patches and patches 2021-06-13 01:26:58 -07:00
Zombie-API-breaking-doors.patch more patches 2021-06-14 11:50:22 -07:00