diff --git a/NHSE.Core/Structures/Map/Terrain/AcreCoordinate.cs b/NHSE.Core/Structures/Map/Terrain/AcreCoordinate.cs index d7e2056..d9c4a0c 100644 --- a/NHSE.Core/Structures/Map/Terrain/AcreCoordinate.cs +++ b/NHSE.Core/Structures/Map/Terrain/AcreCoordinate.cs @@ -34,8 +34,8 @@ public static AcreCoordinate[] GetGridWithExterior(int width, int height) { for (int x = 0; x < width; x++) { - var xn = (x == 0) ? 'L' : x == width - 1 ? 'R' : (char)('0' + x - 1); - var yn = (y == 0) ? 'T' : y == height - 1 ? 'B' : (char)('A' + y - 1); + var xn = (x == 0) ? '<' : x == width - 1 ? '>' : (char)('0' + x - 1); + var yn = (y == 0) ? '^' : y == height - 1 ? 'V' : (char)('A' + y - 1); result[i++] = new AcreCoordinate(xn, yn, x, y); } }