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:
parent
4df8a8017a
commit
59e6d9c451
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ public class StoneHeap {
|
||||||
}
|
}
|
||||||
// Joker
|
// Joker
|
||||||
heap.add(new Stone(0, StoneColor.BLACK, true));
|
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 */
|
/** Removes random {@link Stone} from the heap and returns it */
|
||||||
|
|
Reference in a new issue