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:
parent
7ac328f227
commit
e0e5638ef1
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue