mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Server: fixed wrong timeouts in drafts;
This commit is contained in:
parent
0262c7f0f9
commit
73db223ca7
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ public class DraftOptions extends LimitedOptions implements Serializable {
|
|||
cardNum = 15;
|
||||
}
|
||||
|
||||
if (times.size() <= cardNum) {
|
||||
if (times.size() >= cardNum) {
|
||||
return times.get(cardNum - 1);
|
||||
} else {
|
||||
return times.get(times.size() - 1);
|
||||
|
|
Loading…
Reference in a new issue