novendraap / androminion

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

Player.getMyAddCardCardCount() returns AddActions count, not AddCard count #647

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Lines 124-6 of Player.java (inside the getMyAddCardCardCount definition) reads:
-- if (((ActionCard) card).getAddActions() > 0) {
                    addCards++;
                }

and should probably read:
-- if (((ActionCard) card).getAddCards() > 0) {
                    addCards++;
                }

Original issue reported on code.google.com by f.we...@gmail.com on 31 Jul 2014 at 7:27

GoogleCodeExporter commented 8 years ago
Fixed in r916 (multiplayer).

Original comment by andromin...@gmail.com on 15 Mar 2015 at 11:05