| Commit message (Collapse) | Author | Age | Lines |
|
|
|
| |
The end was getting block offsets, causing client side issues.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Packet 51 is used to send updates about large changes to single chunks
and to remove chunks from the client when they get out of range. In the
first case a single packet object is created and queued for all relevant
players. With our current chunk compression scheme this means the first
player to have the packet processed will start the compression and get the
packet correctly but the rest will get garbage.
Since this packet never contains much data it is better to simply handle
compression of it on the main thread like vanilla does instead of putting in
locks and dealing with their overhead and complexity.
|
| |
|
|
|
|
| |
Fixes BUKKIT-2396
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Added newlines at the end of files
Fixed improper line endings on some files
Matched start - end comments
Added some missing comments for diffs
Fixed syntax on some spots
Minimized some diff
Removed some no longer used files
Added comment on some required files with no changes
Fixed imports of items used once
Added imports for items used more than once
|
| |
|
|
|
|
| |
chunks. Fixes BUKKIT-871
|
| |
|
|
|
|
|
| |
We know these updates (can) break plugins bypassing Bukkit. They are needed for
smooth updates however. There will be another one right before before 1.1-R1.
|
| |
|
| |
|
| |
|
|
|
|
| |
Also minimized all the nms diffs and generic cleanups all around.
|
| |
|
|
is to match the sendBlockChange method.
|