修改GrowthPoint不为int?的类型

This commit is contained in:
2026-07-01 10:27:19 +08:00
parent b822489111
commit 87bc5c0e0c
5 changed files with 22 additions and 24 deletions

View File

@ -275,7 +275,7 @@ public class JournalTaskReceiveConsumer(
prompt.AppendLine(task.Prompt);
prompt.AppendLine();
prompt.AppendLine("题目配置:");
prompt.AppendLine($"- 成长值上限:{task.GrowthPoint ?? 0}");
prompt.AppendLine($"- 成长值上限:{task.GrowthPoint}");
prompt.AppendLine($"- 积分上限:{task.Points}");
prompt.AppendLine($"- 理解力上限:{task.Comprehension}");
prompt.AppendLine($"- 判断力上限:{task.Judgment}");