GUI: fixed error on second side switch

This commit is contained in:
Oleg Agafonov 2023-04-14 18:13:18 +04:00
parent 8803a3c03d
commit 3226b85589

View file

@ -614,7 +614,7 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
@Override
public final Card getSecondCardFace() {
// init card side on first call
if (secondSideCardClazz == null) {
if (secondSideCardClazz == null && secondSideCard == null) {
return null;
}