3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 13:00:06 +01:00

Remove obsolete fix for the end

The end was getting block offsets, causing client side issues.
Dieser Commit ist enthalten in:
feildmaster 2012-12-20 18:05:11 -06:00
Ursprung ca7f67da9d
Commit bd0daa6d54

Datei anzeigen

@ -172,16 +172,6 @@ public class Packet51MapChunk extends Packet {
}
}
// CraftBukkit start - Hackiest hack to have ever hacked.
// First of all, check to see if we flagged it to send, and all data is "0"
// This means that it's an "EmptyChunk," HOWEVER... It's not a physical EmptyChunk on the server, there is simply no data present
if (flag && i == 0xffff && j == 0 && chunkmap.b == 0 && chunkmap.c == 0) {
chunkmap.b = 1;
j = 10240;
java.util.Arrays.fill(abyte, 0, j, (byte) 0);
}
// CraftBukkit end
if (flag) {
byte[] abyte2 = chunk.m();