Fix kudosu wiki link from user profile not linking to in-game overlay

This commit is contained in:
Joseph Madamba 2023-01-14 19:23:25 -08:00
parent efe6dae672
commit 627d1725c3
1 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@
using osu.Framework.Extensions.LocalisationExtensions;
using osu.Game.Resources.Localisation.Web;
using osu.Framework.Localisation;
using osu.Game.Online.Chat;
namespace osu.Game.Overlays.Profile.Sections.Kudosu
{
@ -42,7 +43,7 @@ public CountTotal()
: base(UsersStrings.ShowExtraKudosuTotal)
{
DescriptionText.AddText("Based on how much of a contribution the user has made to beatmap moderation. See ");
DescriptionText.AddLink("this page", "https://osu.ppy.sh/wiki/Kudosu");
DescriptionText.AddLink("this page", LinkAction.OpenWiki, @"Modding/Kudosu");
DescriptionText.AddText(" for more information.");
}
}