No longer mark forge packets as chunk packets.

This commit is contained in:
LexManos 2012-03-05 15:07:18 -08:00
parent 2405761461
commit b77075367e
1 changed files with 0 additions and 1 deletions

View File

@ -38,7 +38,6 @@ public abstract class ForgePacket
pkt.channel = "Forge"; pkt.channel = "Forge";
pkt.data = bytes.toByteArray(); pkt.data = bytes.toByteArray();
pkt.length = pkt.data.length; pkt.length = pkt.data.length;
pkt.isChunkDataPacket = true; //Make our packets higher priority, allowing the initial communication to happen before the client receives all world chunks.
return pkt; return pkt;
} }