From 69a23ef2b6cfbff8b9a4d1f17ff2921d17cc7f3c Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Thu, 28 Mar 2024 14:10:18 +0100 Subject: [PATCH] Fix "not on Homeworld" warning --- Deliveroo/Deliveroo.csproj | 2 +- Deliveroo/Windows/TurnInWindow.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Deliveroo/Deliveroo.csproj b/Deliveroo/Deliveroo.csproj index d4545f4..64b196e 100644 --- a/Deliveroo/Deliveroo.csproj +++ b/Deliveroo/Deliveroo.csproj @@ -1,7 +1,7 @@ net8.0-windows - 4.1 + 4.2 12 enable true diff --git a/Deliveroo/Windows/TurnInWindow.cs b/Deliveroo/Windows/TurnInWindow.cs index 93732c4..27a0d7c 100644 --- a/Deliveroo/Windows/TurnInWindow.cs +++ b/Deliveroo/Windows/TurnInWindow.cs @@ -192,7 +192,7 @@ internal sealed class TurnInWindow : LWindow !IsOnHomeWorld) { State = false; - ImGui.TextColored(ImGuiColors.DalamudRed, "You are not on your home world."); + ImGui.TextColored(ImGuiColors.DalamudRed, "Turn-in disabled, you are not on your home world."); return; } @@ -213,7 +213,7 @@ internal sealed class TurnInWindow : LWindow if (_configuration.BehaviorOnOtherWorld == Configuration.EBehaviorOnOtherWorld.Warning && !IsOnHomeWorld) { ImGui.TextColored(ImGuiColors.DalamudRed, - "Turn-In disabled, you are not on your home world and will not earn FC points."); + "You are not on your home world and will not earn FC points."); } if (Multiplier == 1m)