()
| 918 | request.unlink(); |
| 919 | } |
| 920 | } |
| 921 | } |
| 922 | } |
| 923 | |
| 924 | processQueues() { |
| 925 | // the presence of a strong script closes modals before queue runs |
| 926 | for (const request of this.queue.all()) { |
| 927 | if (request.type === PlayerQueueType.STRONG) { |
| 928 | this.requestModalClose = true; |
| 929 | break; |
| 930 | } |
| 931 | } |
| 932 | if (this.requestModalClose) { |
| 933 | this.requestModalClose = false; |
no test coverage detected