Increase syndicate uplink discount amount to 6. (#33950)
* Increase uplink discounts from 3 to 7 * nevermind, 6
This commit is contained in:
@@ -79,11 +79,11 @@ public sealed class StoreTests
|
||||
var discountComponent = entManager.GetComponent<StoreDiscountComponent>(pda);
|
||||
Assert.That(
|
||||
discountComponent.Discounts,
|
||||
Has.Exactly(3).Items,
|
||||
$"After applying discount total discounted items count was expected to be '3' "
|
||||
Has.Exactly(6).Items,
|
||||
$"After applying discount total discounted items count was expected to be '6' "
|
||||
+ $"but was actually {discountComponent.Discounts.Count}- this can be due to discount "
|
||||
+ $"categories settings (maxItems, weight) not being realistically set, or default "
|
||||
+ $"discounted count being changed from '3' in StoreDiscountSystem.InitializeDiscounts."
|
||||
+ $"discounted count being changed from '6' in StoreDiscountSystem.InitializeDiscounts."
|
||||
);
|
||||
var discountedListingItems = storeComponent.FullListingsCatalog
|
||||
.Where(x => x.IsCostModified)
|
||||
|
||||
Reference in New Issue
Block a user