limited announce list to 9 due to harder selection of numbers above 10

This commit is contained in:
Maxmtg
2013-04-04 06:28:39 +00:00
parent e518027ff5
commit 8124378853

View File

@@ -213,7 +213,7 @@ public class PlayerControllerHuman extends PlayerController {
@Override
public Integer announceRequirements(SpellAbility ability, String announce, boolean canChooseZero) {
List<Object> options = new ArrayList<Object>();
for(int i = canChooseZero ? 0 : 1; i <= 20; i++)
for(int i = canChooseZero ? 0 : 1; i < 10; i++)
options.add(Integer.valueOf(i));
options.add("Other amount");