Fix /go command

45d8cac5a9a51c4affde4b4192cbd7eeb15207dd

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

1 files changed, +1 -1Ignore whitespace
public/scripts/slash-commands.js+1 -1
@@ -3324,7 +3324,7 @@ async function goToCharacterCallback(_, name) {
3324 const character = findChar({ name: name });3324 const character = findChar({ name: name });
3325 if (character) {3325 if (character) {
3326 const chid = getCharIndex(character);3326 const chid = getCharIndex(character);
3327 await openChat(new String(chid));3327 await openChat(String(chid));
3328 setActiveCharacter(character.avatar);3328 setActiveCharacter(character.avatar);
3329 setActiveGroup(null);3329 setActiveGroup(null);
3330 return character.name;3330 return character.name;