join chatlog with `\x01`

96fe4c4ab69bd64bb3f45e2a30dda920d6117cba

steve green <steve_green@qq.com>

Signed
1 files changed, +3 -3Ignore whitespace
public/scripts/world-info.js+3 -3
@@ -217,15 +217,15 @@ class WorldInfoBuffer {
217217 depth = MAX_SCAN_DEPTH;
218218 }
219219
220220 let result = this.#depthBuffer.slice(this.#startDepth, depth).join('\n\x01');
221221
222222 if (this.#injectBuffer.length > 0) {
223223 result += '\n\x01' + this.#injectBuffer.join('\n\x01');
224224 }
225225
226226 // Min activations should not include the recursion buffer
227227 if (this.#recurseBuffer.length > 0 && scanState !== scan_state.MIN_ACTIVATIONS) {
228228 result += '\n\x01' + this.#recurseBuffer.join('\n\x01');
229229 }
230230
231231 return result;