From 29dc9d7aba6d62a55aafff07280ba747a51346fc Mon Sep 17 00:00:00 2001 From: Rampastring Date: Tue, 4 Jun 2024 21:48:53 +0300 Subject: [PATCH] Generalize tile raise/lower hint text in connected tile placement tool --- src/TSMapEditor/Constants.cs | 2 +- src/TSMapEditor/UI/CursorActions/DrawCliffCursorAction.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TSMapEditor/Constants.cs b/src/TSMapEditor/Constants.cs index 9b075bbf..7fe5c62d 100644 --- a/src/TSMapEditor/Constants.cs +++ b/src/TSMapEditor/Constants.cs @@ -5,7 +5,7 @@ namespace TSMapEditor { public static class Constants { - public const string ReleaseVersion = "1.1.0"; + public const string ReleaseVersion = "1.1.1"; public static int CellSizeX = 48; public static int CellSizeY = 24; diff --git a/src/TSMapEditor/UI/CursorActions/DrawCliffCursorAction.cs b/src/TSMapEditor/UI/CursorActions/DrawCliffCursorAction.cs index 8471780d..c00edacd 100644 --- a/src/TSMapEditor/UI/CursorActions/DrawCliffCursorAction.cs +++ b/src/TSMapEditor/UI/CursorActions/DrawCliffCursorAction.cs @@ -50,7 +50,7 @@ public override void DrawPreview(Point2D cellCoords, Point2D cameraTopLeftPoint) "Backspace to go back one step\r\n"; const string tabText = "TAB to toggle between front and back sides\r\n"; - const string pageUpDownText = "PageUp to raise the cliff, PageDown to lower it\r\n"; + const string pageUpDownText = "PageUp to raise the tiles, PageDown to lower them\r\n"; const string exitText = "Right-click or ESC to exit"; string text = (Constants.IsFlatWorld, cliffType.FrontOnly) switch