商品補充時の挙動修正
This commit is contained in:
parent
f3c53911b5
commit
d52f78a6df
|
|
@ -484,16 +484,14 @@ public class Market : SingletonMonoBehaviour<Market>
|
|||
shuffledOrder.AddRange(refillList);
|
||||
try
|
||||
{
|
||||
if (displayFlavors.Count <= shopStock.Count)
|
||||
var diffDisplayCount = shopStock.Count - displayFlavors.Count;
|
||||
if (diffDisplayCount > 0)
|
||||
{
|
||||
displayFlavors = shopStock.ToList();
|
||||
displayFlavors.AddRange(shopStock.GetRange(displayFlavors.Count, diffDisplayCount));
|
||||
}
|
||||
else
|
||||
for (int i = 0; i < refillList.Count; i++)
|
||||
{
|
||||
for (int i = 0; i < refillList.Count; i++)
|
||||
{
|
||||
displayFlavors[refillList[i]] = shopStock[shopStock.Count - 1 - i];
|
||||
}
|
||||
displayFlavors[refillList[i]] = shopStock[shopStock.Count - 1 - i];
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
|
|
|
|||
Loading…
Reference in New Issue