()
| 658 | if (trigger) { |
| 659 | this.enqueueScript(trigger, PlayerQueueType.ENGINE); |
| 660 | } |
| 661 | } |
| 662 | |
| 663 | calculateRunWeight() { |
| 664 | this.runweight = 0; |
| 665 | |
| 666 | const invs = this.invs.values(); |
| 667 | for (let i = 0; i < this.invs.size; i++) { |
| 668 | const inv = invs.next().value; |
| 669 | if (!inv) { |
| 670 | continue; |
| 671 | } |
| 672 | |
| 673 | const invType = InvType.get(inv.type); |
no test coverage detected