HumanPlaySpellAbility: fixes setXManaCostPaid when cost doesn't has X

This commit is contained in:
Hans Mackowiak
2021-01-06 14:20:45 +01:00
parent 4ca0765df5
commit 8a2db82e1f

View File

@@ -262,7 +262,7 @@ public class HumanPlaySpellAbility {
ability.setXManaCostPaid(value);
}
} else {
ability.setXManaCostPaid(0);
ability.setXManaCostPaid(null);
}
}
return true;