1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Fix incorrect templates

This commit is contained in:
Andrei Zavatski 2019-08-20 16:19:21 +03:00
parent 5c7cb4dc21
commit 426c7a4898

View File

@ -57,14 +57,14 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
case KudosuAction.VoteGive:
linkFlowContainer.AddText(@"Received ");
addKudosuPart();
addMainPart($@" from {userLinkTemplate()} for a post at ");
addMainPart(@" from obtaining votes in modding post of ");
addPostPart();
break;
case KudosuAction.Give:
linkFlowContainer.AddText(@"Received ");
addKudosuPart();
addMainPart(@" from obtaining votes in modding post of ");
addMainPart($@" from {userLinkTemplate()} for a post at ");
addPostPart();
break;