This commit is contained in:
milimoe 2026-05-19 00:52:25 +08:00
parent 9c2e158cea
commit d844084c09
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0

View File

@ -305,6 +305,8 @@ namespace Oshima.FunGame.WebAPI.Services
sb.AppendLine($" - 赛事MVP (x 3.5){statText}"); sb.AppendLine($" - 赛事MVP (x 3.5){statText}");
if (canBet) kb.AppendButtons(2, Button.CreateCmdButton("🏆 MVP", $"预测 {matchId} mvp:", enter: false)); if (canBet) kb.AppendButtons(2, Button.CreateCmdButton("🏆 MVP", $"预测 {matchId} mvp:", enter: false));
} }
}
if (status == 2) if (status == 2)
{ {
string winnerName = winner switch { 1 => t1, 2 => t2, 3 => result, _ => "待定" }; string winnerName = winner switch { 1 => t1, 2 => t2, 3 => result, _ => "待定" };
@ -316,7 +318,6 @@ namespace Oshima.FunGame.WebAPI.Services
{ {
sb.AppendLine($"预测指令:{"".CreateCmdInput()} <比赛ID> <选项> <{General.GameplayEquilibriumConstant.InGameCurrency}数>\r\n👇🏻 点击下方按钮快速预测"); sb.AppendLine($"预测指令:{"".CreateCmdInput()} <比赛ID> <选项> <{General.GameplayEquilibriumConstant.InGameCurrency}数>\r\n👇🏻 点击下方按钮快速预测");
} }
}
return sb.ToString().Trim(); return sb.ToString().Trim();
} }