This commit is contained in:
@@ -2051,8 +2051,8 @@ namespace AyaNova.Util
|
||||
o.UnitModelId = Fake.Random.Long(1, TotalSeededUnitModels);
|
||||
o.BoughtHere = true;
|
||||
|
||||
//Unit bought elsewhere 10% chance (1/10)
|
||||
if (Fake.Random.Number(1, 10) == 5)
|
||||
//Unit bought elsewhere 90% chance (1/10)
|
||||
if (Fake.Random.Number(1, 10) != 5)
|
||||
{
|
||||
o.BoughtHere = false;
|
||||
o.PurchasedFromVendorId = Fake.Random.Long(1, TotalSeededVendors);
|
||||
|
||||
Reference in New Issue
Block a user