Skip to content

Commit 8e43498

Browse files
Update EpitaphTrialAsset.cs
1 parent 1e2237e commit 8e43498

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Arrowgene.Ddon.Shared/Asset/EpitaphTrialAsset.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,17 +88,17 @@ public string Label()
8888
break;
8989
case SoulOrdealObjective.CannotDieMoreThanOnce:
9090
counter = (Param2 == 1) ? 0U : 1U;
91-
label = $"Cannot die more than once {counter}/1";
91+
label = $"Cannot die {counter}/1";
9292
break;
9393
case SoulOrdealObjective.CannotBeAffectedByAbnormalStatus:
94-
label = $"Cannot be affected by abnormal status more than {Param1} times {Param2}/{Param1}";
94+
label = $"Cannot be affected by abnormal status {Param1} times {Param2}/{Param1}";
9595
break;
9696
case SoulOrdealObjective.InflictAbnormalStatusCount:
9797
label = $"Inflict abnormal status effects {Param1} or more times {Param2}/{Param1}";
9898
break;
9999
case SoulOrdealObjective.ItemNoteUsedMoreThanOnce:
100100
counter = (Param2 == 1) ? 0U : 1U;
101-
label = $"Items must not be used more than once {counter}/1";
101+
label = $"Items must not be used {counter}/1";
102102
break;
103103
case SoulOrdealObjective.EliminateTheEnemy:
104104
label = "Eliminate the enemy";

0 commit comments

Comments
 (0)