mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
fix hand differential discard for Balance.
This commit is contained in:
@@ -4680,7 +4680,7 @@ public class CardFactory_Sorceries {
|
||||
//Hand
|
||||
CardList humHand = AllZoneUtil.getPlayerHand(AllZone.HumanPlayer);
|
||||
CardList compHand = AllZoneUtil.getPlayerHand(AllZone.ComputerPlayer);
|
||||
int handDiff = humHand.size() - compHand.size();
|
||||
int handDiff = Math.abs(humHand.size() - compHand.size());
|
||||
|
||||
if (compHand.size() > humHand.size())
|
||||
{
|
||||
@@ -6444,7 +6444,7 @@ public class CardFactory_Sorceries {
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Sanity Grinding")) {
|
||||
/*
|
||||
* Chroma <EFBFBD> Reveal the top ten cards of your library. For each blue
|
||||
* Chroma - Reveal the top ten cards of your library. For each blue
|
||||
* mana symbol in the mana costs of the revealed cards, target opponent
|
||||
* puts the top card of his or her library into his or her graveyard.
|
||||
* Then put the cards you revealed this way on the bottom of your
|
||||
@@ -6727,6 +6727,7 @@ public class CardFactory_Sorceries {
|
||||
card.addSpellAbility(spell);
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Molten Psyche")) {
|
||||
/*
|
||||
@@ -7034,6 +7035,7 @@ public class CardFactory_Sorceries {
|
||||
card.addSpellAbility(spell);
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
return card;
|
||||
}//getCard
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user