mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08: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…
Add table
Add a link
Reference in a new issue