fix: 优化邀请码不足提示文案

This commit is contained in:
ccnetcore
2025-11-02 00:32:04 +08:00
parent e15eb6149b
commit 5019a36138

View File

@@ -128,7 +128,7 @@ public class CardFlipManager : DomainService
var requiredInviteCodeCount = task.InviteFlipsUsed + 1;
if (weeklyInviteCodeUsedCount < requiredInviteCodeCount)
{
throw new UserFriendlyException($"需要先使用{requiredInviteCodeCount}个他人邀请码才能解锁第{task.TotalFlips + 1}次翻牌");
throw new UserFriendlyException($"需本周累积使用{requiredInviteCodeCount}个他人邀请码才能解锁第{task.TotalFlips + 1}次翻牌,您还差一个~");
}
}