- The casual games now have correct amount of cards in deck.
This commit is contained in:
@@ -247,10 +247,11 @@ public class HallServer extends AbstractServer {
|
||||
int owned = 0;
|
||||
if (ownedCollection != null)
|
||||
owned = ownedCollection.getItemCount(blueprintId);
|
||||
int fromOwned = Math.min(owned, count);
|
||||
|
||||
for (int i = 0; i < owned; i++)
|
||||
for (int i = 0; i < fromOwned; i++)
|
||||
filteredSpecialCardsDeck.addCard(blueprintId);
|
||||
for (int i = 0; i < (count - owned); i++)
|
||||
for (int i = 0; i < (count - fromOwned); i++)
|
||||
filteredSpecialCardsDeck.addCard(_library.getBaseBlueprintId(blueprintId));
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
<pre style="font-size:80%">
|
||||
<b>18 Jan. 2012</b>
|
||||
- The casual games now have correct amount of cards in deck.
|
||||
|
||||
<b>17 Jan. 2012</b>
|
||||
- "Deagol" should be able to play an artifact or possession without freezing the game.
|
||||
- "Sam, Bearer of Great Need" may now start as a Ring-Bearer.
|
||||
|
||||
Reference in New Issue
Block a user