Delay is not needed anymore.

a037129c20869a8d9e74aeb2a20eebefbad88e2c

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

1 files changed, +0 -1Showing whitespace changes
public/scripts/personas.js+0 -1
@@ -403,7 +403,6 @@ export async function convertCharacterToPersona(characterId = null) {
403403 }
404404
405405 if (description.includes('{{char}}') || description.includes('{{user}}')) {
406- await delay(500);
407406 const confirm = await Popup.show.confirm('Persona Description Macros', 'This character has a description that uses <code>{{char}}</code> or <code>{{user}}</code> macros. Do you want to swap them in the persona description?');
408407 if (confirm) {
409408 description = description.replace(/{{char}}/gi, '{{personaChar}}').replace(/{{user}}/gi, '{{personaUser}}');