Fix WI joiner/mather not being at the start
| @@ -217,8 +217,9 @@ class WorldInfoBuffer { | ||
| 217 | 217 | depth = MAX_SCAN_DEPTH; |
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | const JOINERMATCHER = '\n\x01'; |
| 221 | - let result = this.#depthBuffer.slice(this.#startDepth, depth).join(JOINER); | |
| 221 | + const JOINER = '\n' + MATCHER; | |
| 222 | + let result = MATCHER + this.#depthBuffer.slice(this.#startDepth, depth).join(JOINER); | |
| 222 | 223 | |
| 223 | 224 | if (this.#injectBuffer.length > 0) { |
| 224 | 225 | result += JOINER + this.#injectBuffer.join(JOINER); |