| 387 | | 387 | |
| 388 | /** @param {string} listString @return {string[]} */ | 388 | /** @param {string} listString @return {string[]} */ |
| 389 | function readSingleArgsRandomList(listString) { | 389 | function readSingleArgsRandomList(listString) { |
| 390 | // If it contains double colons, those will have precedence over comma-seperated lists. | 390 | // If it contains double colons, those will have precedence over comma-separated lists. |
| 391 | // This can only happen if the macro only had a single colon to introduce the list... | 391 | // This can only happen if the macro only had a single colon to introduce the list... |
| 392 | // like, {{random:a::b::c}} | 392 | // like, {{random:a::b::c}} |
| 393 | if (listString.includes('::')) { | 393 | if (listString.includes('::')) { |