greenpiece / androminion

Automatically exported from code.google.com/p/androminion
0 stars 0 forks source link

If I play 2 players game at once, subsequent 3 or 4 players game's victory card pile is 8. #180

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. play 2 players game to the end.
2. play 3 or 4 players game without rebooting.

What is the expected output? What do you see instead?
3 or 4 players game's victory card pile should be 12, but 8.

What version of the product are you using? On what operating system?
1.9.b17 Android 2.3

Please provide any additional information below.
http://code.google.com/p/androminion/source/browse/trunk/vdom/src/com/vdom/core/
Game.java#2146 should be

        if (numPlayers == 2) {
            victoryCardPileSize = 8;
        } else {
            victoryCardPileSize = 12;
        }

Original issue reported on code.google.com by ksuke...@gmail.com on 20 Dec 2011 at 2:04

GoogleCodeExporter commented 9 years ago

Original comment by August.D...@gmail.com on 20 Dec 2011 at 3:53