aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0241-handle-PacketPlayInKeepAlive-async.patch
AgeCommit message (Collapse)Author
2018-10-23Update upstream for minecart spawner improvementZach Brown
2018-07-12Don't send digged block updates for unloaded chunksShane Freeder
2018-07-04Current Chunk for Entity and Block Entities, counts by entity typeAikar
This enables us a fast reference to the entities current chunk instead of having to look it up by hashmap lookups. We also store counts by type to further enable other performance optimizations in later patches.
2018-03-22Add extended PaperServerListPingEvent (#980)Minecrell
* Drop original implementation for old player sample API * Add extended PaperServerListPingEvent Add a new event that extends the original ServerListPingEvent and allows full control of the response sent to the client. * Implement deprecated player sample API
2018-02-12Optimize HoppersAikar
- Lots of itemstack cloning removed. Only clone if the item is actually moved - Return true when a plugin cancels inventory move item event instead of false, as false causes pulls to cycle through all items. However, pushes do not exhibit the same behavior, so this is not something plugins could of been relying on. - Add option (Default on) to cooldown hoppers when they fail to move an item due to full inventory - Skip subsequent InventoryMoveItemEvents if a plugin does not use the item after first event fire for an iteration
2018-01-18Add PlayerProfile API to replace GameProfileAikar
This simply provides the base API to create the objects. Further commits will come that adds adds usage of this API to existing GameProfile based API's, as well as new API's.
2018-01-10Update upstream B/CB/SZach Brown