Makes sense that a new temp chat starts if you were already on a temp chat

d785e7a7ced8ab95fc026ebd3556846cc50c279d

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +2 -1Ignore whitespace
public/script.js+2 -1
@@ -9993,7 +9993,8 @@ jQuery(async function () {
99939993 await doNewChat({ deleteCurrentChat: deleteCurrentChat });
99949994 }
99959995 if (!selected_group && this_chid === undefined && !is_send_press) {
9996- await newAssistantChat({ temporary: true });
9996+ const alreadyInTempChat = this_chid === undefined && name2 === neutralCharacterName;
9997+ await newAssistantChat({ temporary: alreadyInTempChat });
99979998 }
99989999 }
999910000