From febcc4e0247a7c2219397010f7f51345ca073821 Mon Sep 17 00:00:00 2001 From: Kurt Date: Wed, 20 May 2020 20:26:04 -0700 Subject: [PATCH] Change sea acre naming for combobox 'B' for bottom is the same as 'B' for Row2; just use directional arrows instead. not using unicode arrows --- NHSE.Core/Structures/Map/Terrain/AcreCoordinate.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }