Change Joker color from orange to red

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@25 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-04-30 15:16:35 +02:00
parent 4df8a8017a
commit 59e6d9c451

View file

@ -26,7 +26,7 @@ public class StoneHeap {
}
// Joker
heap.add(new Stone(0, StoneColor.BLACK, true));
heap.add(new Stone(0, StoneColor.ORANGE, true));
heap.add(new Stone(0, StoneColor.RED, true));
}
/** Removes random {@link Stone} from the heap and returns it */