summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/Packet51MapChunk.java
Commit message (Collapse)AuthorAgeLines
* Update CraftBukkit to 1.6.1Nate Mortensen2013-07-01-186/+0
|
* Update CraftBukkit to Minecraft 1.5.2Travis Watkins2013-04-27-12/+12
|
* Remove obsolete fix for the endfeildmaster2012-12-20-10/+0
| | | | The end was getting block offsets, causing client side issues.
* Update CraftBukkit to Minecraft 1.4.6feildmaster2012-12-20-7/+9
|
* Don't thread single chunk compression. Fixes BUKKIT-2927Travis Watkins2012-11-15-32/+3
| | | | | | | | | | | | | 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.
* Update CraftBukkit to Minecraft 1.4.4.Travis Watkins2012-11-13-8/+31
|
* Fix empty chunks not sending biome properly and causing client side issues. ↵feildmaster2012-08-25-8/+10
| | | | Fixes BUKKIT-2396
* Fix EmptyChunk's not sending to the Client correctly. Fixes BUKKIT-2206feildmaster2012-08-23-0/+8
|
* Update CraftBukkit to Minecraft 1.3.1feildmaster2012-08-02-112/+109
|
* Cleaned up CraftBukkit comments in NMS.Wesley Wolfe2012-07-23-2/+1
| | | | | | | | | | | | | 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
* Updated to Minecraft version 1.2.4. Updated version string to 1.2.4-R0.1.Nathan Adams2012-03-22-1/+1
|
* [Bleeding] Prevent update inconsistencies on generation/decoration that span ↵Mike Primm2012-03-22-0/+1
| | | | chunks. Fixes BUKKIT-871
* Updated CraftBukkit to 1.2Nathan Adams2012-03-01-32/+126
|
* Update for 1.1_01 renames.Erik Broes2012-01-15-8/+9
| | | | | 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.
* Update to mc-dev rename revision 01Nathan Adams2012-01-12-9/+9
|
* Update for 1.0.0Erik Broes2011-11-20-2/+2
|
* Chunk Compression on seperate thread. Thanks to Zeerix.Rigby2011-08-03-2/+5
|
* Massive renaming update in nms. If you bypassed Bukkit, you will likely break.Erik Broes2011-06-27-3/+3
| | | | Also minimized all the nms diffs and generic cleanups all around.
* Generic cleanupErik Broes2011-06-12-2/+2
|
* Adds update chunk method for sending fake chunk updates to the client. This ↵raphfrk2011-06-08-0/+95
is to match the sendBlockChange method.