mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
limited announce list to 9 due to harder selection of numbers above 10
This commit is contained in:
@@ -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");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user