Increase max number of blank cards to 30. (10 still seems like a reasonably comfortable number for most games, but if you're playing with a lot of decks enabled you might want a few more.)

This commit is contained in:
Gavin Lambert 2013-10-02 23:41:47 +13:00
parent 7ac328f227
commit e0e5638ef1
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ HttpSession hSession = request.getSession(true);
</fieldset>
<label id="blanks_limit_label" title="Blank cards allow a player to type in their own answer.">
Also include <select id="blanks_limit_template" class="blanks_limit">
<% for (int i = 0; i <= 10; i++) { %>
<% for (int i = 0; i <= 30; i++) { %>
<option <%= i == 0 ? "selected='selected' " : "" %>value="<%= i %>"><%= i %></option>
<% } %>
</select> blank white cards.