(...keys)
| 311 | } |
| 312 | |
| 313 | getAILeagueStat (...keys) { |
| 314 | let val = this.aiLeagueStats |
| 315 | for (const key of Array.from(keys)) { |
| 316 | val = val != null ? val[key] : undefined |
| 317 | if (val == null) { return null } |
| 318 | } |
| 319 | return val |
| 320 | } |
| 321 | |
| 322 | renderStats () { |
| 323 | if (this.destroyed) { return } |
no outgoing calls
no test coverage detected