Skip to content

Commit

Permalink
fix: custom quest id showing when disabled in settings
Browse files Browse the repository at this point in the history
  • Loading branch information
DorielRivalet committed Sep 1, 2023
1 parent cb4f2fc commit 0aa9187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MHFZ_Overlay/ViewModels/Windows/AddressModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@ public static bool ShowOverlayStatIcon
/// <returns></returns>
public static string GetQuestNameFromID(int id)
{
if (id > 63421)
if (id > 63421 && DiscordService.ShowDiscordQuestNames())
{
return $"Custom Quest {id}";
}
Expand Down

0 comments on commit 0aa9187

Please sign in to comment.