Skip to content

Commit bd70dc3

Browse files
committed
Renaming
1 parent 44d350e commit bd70dc3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

BoosterManager/Boosters/BoosterQueue.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -346,8 +346,8 @@ internal string GetStatus() {
346346
if (GetNumBoosters(BoosterType.OneTime) > 0) {
347347
Booster? lastOneTimeBooster = GetNextCraftableBooster(BoosterType.OneTime, getLast: true);
348348
if (lastOneTimeBooster != null) {
349-
responses.Add(String.Format(Strings.QueueStatusOneTimeBoosters, GetNumBoosters(BoosterType.OneTime, wasCrafted: true), GetNumBoosters(BoosterType.OneTime), String.Format("~{0:t}", lastOneTimeBooster.GetAvailableAtTime(BoosterDelay)), String.Format("{0:N0}", GetGemsNeeded(BoosterType.OneTime, wasCrafted: false))));
350-
responses.Add(String.Format(Strings.QueueStatusOneTimeBoosterList, String.Join(", ", GetBoosterIDs(BoosterType.OneTime, wasCrafted: false))));
349+
responses.Add(String.Format(Strings.QueueStatusLimitedBoosters, GetNumBoosters(BoosterType.OneTime, wasCrafted: true), GetNumBoosters(BoosterType.OneTime), String.Format("~{0:t}", lastOneTimeBooster.GetAvailableAtTime(BoosterDelay)), String.Format("{0:N0}", GetGemsNeeded(BoosterType.OneTime, wasCrafted: false))));
350+
responses.Add(String.Format(Strings.QueueStatusLimitedBoosterList, String.Join(", ", GetBoosterIDs(BoosterType.OneTime, wasCrafted: false))));
351351
}
352352
}
353353
if (GetNumBoosters(BoosterType.Permanent) > 0) {

BoosterManager/Localization/Strings.resx

+4-4
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,12 @@
205205
<value>Need {0} more gems to finish all boosters!</value>
206206
<comment>{0} will be replaced by a number of gems</comment>
207207
</data>
208-
<data name="QueueStatusOneTimeBoosters" xml:space="preserve">
209-
<value>Crafted {0}/{1} one-time boosters. Crafting will finish at {2}, and will use {3} gems.</value>
208+
<data name="QueueStatusLimitedBoosters" xml:space="preserve">
209+
<value>Crafted {0}/{1} boosters. Crafting will finish at {2}, and will use {3} gems.</value>
210210
<comment>{0} will be replaced by a number of boosters, {1} will be replaced by a number of boosters, {2} will be replaced by a time, {3} will be replaced by a number of gems</comment>
211211
</data>
212-
<data name="QueueStatusOneTimeBoosterList" xml:space="preserve">
213-
<value>One-time boosters waiting to be crafted: {0}</value>
212+
<data name="QueueStatusLimitedBoosterList" xml:space="preserve">
213+
<value>Boosters waiting to be crafted: {0}</value>
214214
<comment>{0} will be replaced by a list of appIDs</comment>
215215
</data>
216216
<data name="QueueStatusPermanentBoosters" xml:space="preserve">

0 commit comments

Comments
 (0)