forked from liza/Deliveroo
Fix "not on Homeworld" warning
This commit is contained in:
parent
00c9dbb0a2
commit
69a23ef2b6
@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0-windows</TargetFramework>
|
||||
<Version>4.1</Version>
|
||||
<Version>4.2</Version>
|
||||
<LangVersion>12</LangVersion>
|
||||
<Nullable>enable</Nullable>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user