()
| 1513 | } |
| 1514 | |
| 1515 | const activeAndPastArenas = () => (() => { |
| 1516 | const result = [] |
| 1517 | for (const a of Array.from(arenas)) { |
| 1518 | if (a.start <= new Date()) { |
| 1519 | result.push(_.clone(a)) |
| 1520 | } |
| 1521 | } |
| 1522 | return result |
| 1523 | })() |
| 1524 | |
| 1525 | const teamSpells = { humans: ['hero-placeholder/plan'], ogres: ['hero-placeholder-1/plan'] } |
| 1526 |