}
// MCPC+ start - save the chunks forced by this ticket (fix for chunkloaders)
NBTTagList ticketChunks = ticket.getTagList("Chunks");
for (int k = 0; k < ticketChunks.tagCount(); k++) {
NBTTagCompound nbtChunk = (NBTTagCompound) ticketChunks.tagAt(k);
int chunkX = nbtChunk.getInteger("chunkX");
int chunkZ = nbtChunk.getInteger("chunkZ");
ChunkCoordIntPair chunkCoordIntPair = new ChunkCoordIntPair(chunkX, chunkZ);
forceChunkInternal(tick, chunkCoordIntPair);
chunkProviderServer.cacheChunk(chunkX, chunkZ);