|
@@ -1342,13 +1342,18 @@ public static class RandomUtility
|
|
|
CardSource temp = CardDatas[n];
|
|
CardSource temp = CardDatas[n];
|
|
|
|
|
|
|
|
if (!temp.IsFlipped)
|
|
if (!temp.IsFlipped)
|
|
|
|
|
+ {
|
|
|
temp.SetReverse();
|
|
temp.SetReverse();
|
|
|
|
|
|
|
|
|
|
+ if(temp.Owner.SecurityCards.Contains(temp))
|
|
|
|
|
+ GManager.OnSecurityStackChanged?.Invoke(temp.Owner);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
CardDatas[n] = CardDatas[k];
|
|
CardDatas[n] = CardDatas[k];
|
|
|
CardDatas[k] = temp;
|
|
CardDatas[k] = temp;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-
|
|
|
|
|
return CardDatas;
|
|
return CardDatas;
|
|
|
}
|
|
}
|
|
|
|
|
|