Closed GoogleCodeExporter closed 9 years ago
In doctor() there's
for (Card c : orderedCards) {
currentPlayer.putOnTopOfDeck(c);
}
instead of
// Put the cards back on the deck
for (int i = orderedCards.size() - 1; i >= 0; i--) {
currentPlayer.putOnTopOfDeck(orderedCards.get(i));
}
Original comment by frank.ro...@gmail.com
on 28 Dec 2014 at 4:17
Fixed in r916 (multiplayer).
Original comment by andromin...@gmail.com
on 15 Mar 2015 at 11:00
Original issue reported on code.google.com by
wesc...@gmail.com
on 27 Oct 2013 at 6:45