Skip to content

Commit

Permalink
Fixed Regression for Improper Matrix Initiative Displays
Browse files Browse the repository at this point in the history
  • Loading branch information
DelnarErsike committed Mar 7, 2024
1 parent 6f7ea5d commit dec7d11
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions Chummer/Backend/Characters/Character.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25477,8 +25477,8 @@ await LanguageManager
? "String_MatrixInitiative"
: "String_Initiative", strLanguageToPrint, token: token)
.ConfigureAwait(false),
await GetMatrixInitiativeValueAsync(token).ConfigureAwait(false),
await GetMatrixInitiativeDiceAsync(token).ConfigureAwait(false));
await GetMatrixInitiativeColdValueAsync(token).ConfigureAwait(false),
await GetMatrixInitiativeColdDiceAsync(token).ConfigureAwait(false));
}
finally
{
Expand Down Expand Up @@ -25732,8 +25732,8 @@ await LanguageManager
? "String_MatrixInitiative"
: "String_Initiative", strLanguageToPrint, token: token)
.ConfigureAwait(false),
await GetMatrixInitiativeValueAsync(token).ConfigureAwait(false),
await GetMatrixInitiativeDiceAsync(token).ConfigureAwait(false));
await GetMatrixInitiativeHotValueAsync(token).ConfigureAwait(false),
await GetMatrixInitiativeHotDiceAsync(token).ConfigureAwait(false));
}
finally
{
Expand Down
6 changes: 3 additions & 3 deletions Chummer/lang/de-de.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6895,15 +6895,15 @@
</string>
<string>
<key>String_Initiative</key>
<text>{0} +{1}W6</text>
<text>{0} + {1}W6</text>
</string>
<string>
<key>String_MatrixInitiative</key>
<text>{0} + DV +{1}W6</text>
<text>{0} + DV + {1}W6</text>
</string>
<string>
<key>String_MatrixInitiativeLong</key>
<text>{0} + Datenverarbeitung +{1}W6</text>
<text>{0} + Datenverarbeitung + {1}W6</text>
</string>
<string>
<key>String_AttributeESSLong</key>
Expand Down
6 changes: 3 additions & 3 deletions Chummer/lang/en-us.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1048,15 +1048,15 @@
</string>
<string>
<key>String_Initiative</key>
<text>{0} +{1}d6</text>
<text>{0} + {1}d6</text>
</string>
<string>
<key>String_MatrixInitiative</key>
<text>{0} + DP +{1}d6</text>
<text>{0} + DP + {1}d6</text>
</string>
<string>
<key>String_MatrixInitiativeLong</key>
<text>{0} + Data Processing +{1}d6</text>
<text>{0} + Data Processing + {1}d6</text>
</string>
<string>
<key>Checkbox_HideOverAvailLimit</key>
Expand Down
6 changes: 3 additions & 3 deletions Chummer/lang/ja-jp.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6973,15 +6973,15 @@
</string>
<string>
<key>String_Initiative</key>
<text>{0} +{1}d6</text>
<text>{0} + {1}d6</text>
</string>
<string>
<key>String_MatrixInitiative</key>
<text>{0} + DP +{1}d6</text>
<text>{0} + DP + {1}d6</text>
</string>
<string>
<key>String_MatrixInitiativeLong</key>
<text>{0} + Data Processing +{1}d6</text>
<text>{0} + Data Processing + {1}d6</text>
</string>
<string>
<key>Checkbox_HideOverAvailLimit</key>
Expand Down
6 changes: 3 additions & 3 deletions Chummer/lang/pt-br.xml
Original file line number Diff line number Diff line change
Expand Up @@ -808,15 +808,15 @@
</string>
<string>
<key>String_Initiative</key>
<text>{0} +{1}d6</text>
<text>{0} + {1}d6</text>
</string>
<string>
<key>String_MatrixInitiative</key>
<text>{0} + PD +{1}d6</text>
<text>{0} + PD + {1}d6</text>
</string>
<string>
<key>String_MatrixInitiativeLong</key>
<text>{0} + Processamento de Dados +{1}d6</text>
<text>{0} + Processamento de Dados + {1}d6</text>
</string>
<string>
<key>Checkbox_HideOverAvailLimit</key>
Expand Down
4 changes: 2 additions & 2 deletions Chummer/lang/zh-cn.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6951,11 +6951,11 @@
</string>
<string>
<key>String_MatrixInitiative</key>
<text>{0} + 数据处理 +{1}d6</text>
<text>{0} + 数据处理 + {1}d6</text>
</string>
<string>
<key>String_MatrixInitiativeLong</key>
<text>{0} + 数据处理 +{1}d6</text>
<text>{0} + 数据处理 + {1}d6</text>
</string>
<string>
<key>Checkbox_HideOverAvailLimit</key>
Expand Down

0 comments on commit dec7d11

Please sign in to comment.