private List <Gardarike.GetWorldMapResponse> GetServerChunks(int x, int y) { var chunks = new List <Gardarike.GetWorldMapResponse>(); for (int i = -1; i < 2; i++) { for (int j = -1; j < 2; j++) { chunks.Add(MapCache.GetGlobalChunk(x + i, y + j)); } } return(chunks); }