Merge pull request #289 from jojorne/jojorne-patch-keep-genseqs-visible-on-submit-memory

Don't hide genseqs on submit memory
This commit is contained in:
henk717
2023-02-18 19:01:33 +01:00
committed by GitHub

View File

@@ -946,7 +946,9 @@ function _dosubmit() {
submit_throttle = null; submit_throttle = null;
input_text.val(""); input_text.val("");
hideMessage(); hideMessage();
hidegenseqs(); if(!memorymode){
hidegenseqs();
}
socket.send({'cmd': 'submit', 'allowabort': !disallow_abort, 'actionmode': adventure ? action_mode : 0, 'chatname': chatmode ? chat_name.val() : undefined, 'data': txt}); socket.send({'cmd': 'submit', 'allowabort': !disallow_abort, 'actionmode': adventure ? action_mode : 0, 'chatname': chatmode ? chat_name.val() : undefined, 'data': txt});
} }