Fix hint saving

This commit is contained in:
Eevee (Evelyn Woods) 2020-12-03 21:38:39 -07:00
parent 87ac6f94a3
commit 30062485ab

View File

@ -1313,6 +1313,7 @@ export function synthesize_level(stored_level) {
// FIXME this does not respect global hint, but then, neither does the editor.
hints = hints.map(hint => hint ?? '');
hints.push('');
hints.unshift('');
c2m.add_section('NOTE', hints.join('\n[CLUE]\n'));
// FIXME ack, ArrayBuffer.slice makes a copy actually! and i use it a lot in this file i think!!