For AI chat, in long stories there can be tons of characters (their names below the send message button) and overwhelming. Deleting them one by one is tedious-perhaps can we make it so that the latest chatters are displayed at the top? that way its easier
You must log in or register to comment.
You can edit the
getRecentCharacterNames()
function on the Lists panel (left text editor) and on thesortedUniqueNames
you can remove the.map( ... )
portion and theaName.localeCompare(bName)
like so:// from // let sortedUniqueNames = Object.entries(nameHist).map(e => [e[0], Math.round(e[1]/10)]).sort(([aName, aCount], [bName, bCount]) => bCount - aCount || aName.localeCompare(bName)).map(([name]) => name); // to let sortedUniqueNames = Object.entries(nameHist).sort(([aName, aCount], [bName, bCount]) => bCount - aCount).map(([name]) => name);
If you save the generator, it would create your own fork. You can then download the story from the original one and import it to the new fork.