Only add group member stopping strings on message - Only add group members as stopping strings if generating for a specific group member or user. (Allow slash commands to work around name stopping string restrictions)

fd03ccdd4fb2d9ab6cca0a0cf1881d690cc9b9e4

Wolfsblvt <wolfsblvt@gmail.com>

1 files changed, +2 -2Ignore whitespace
public/script.js+2 -2
@@ -2496,8 +2496,8 @@ export function getStoppingStrings(isImpersonate, isContinue) {
24962496 result.push(charString);
24972497 }
24982498
2499- // Add other group members as the stopping strings
2499+ // Add group members as stopping strings if generating for a specific group member or user. (Allow slash commands to work around name stopping string restrictions)
25002500 if (selected_group && (name2 || isImpersonate)) {
25012501 const group = groups.find(x => x.id === selected_group);
25022502
25032503 if (group && Array.isArray(group.members)) {