Skip to content

Commit 2dbb305

Browse files
Update EpitaphTrialAsset.cs
1 parent 8e43498 commit 2dbb305

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Arrowgene.Ddon.Shared/Asset/EpitaphTrialAsset.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public string Label()
8888
break;
8989
case SoulOrdealObjective.CannotDieMoreThanOnce:
9090
counter = (Param2 == 1) ? 0U : 1U;
91-
label = $"Cannot die {counter}/1";
91+
label = $"Die less than {Param2} times {counter}/1";
9292
break;
9393
case SoulOrdealObjective.CannotBeAffectedByAbnormalStatus:
9494
label = $"Cannot be affected by abnormal status {Param1} times {Param2}/{Param1}";
@@ -98,7 +98,7 @@ public string Label()
9898
break;
9999
case SoulOrdealObjective.ItemNoteUsedMoreThanOnce:
100100
counter = (Param2 == 1) ? 0U : 1U;
101-
label = $"Items must not be used {counter}/1";
101+
label = $"Items cannot be used {Param2} times {counter}/1";
102102
break;
103103
case SoulOrdealObjective.EliminateTheEnemy:
104104
label = "Eliminate the enemy";

0 commit comments

Comments
 (0)