Changed separator to whitespace

This commit is contained in:
Peter Bjerg Lidegaard
2026-05-04 19:50:48 +02:00
parent 63cab8f11d
commit cfb6d47625
+1 -1
View File
@@ -510,7 +510,7 @@ on('change:character_name', function (eventInfo) {
return;
}
let message = `@{${eventInfo.sourceAttribute}} had the special characters '${specialCharacters.filter(unique).join(", ")}'. As these can break various buttons, calculations, and functionality on the sheet, they have been removed.\n\nFor flavor names, try using single quotes ' as these has not yet caused any issues. For instance: Thaldrin 'Hawkeye' Ravenflock.`
let message = `@{${eventInfo.sourceAttribute}} had the special characters '${specialCharacters.filter(unique).join(" ")}'. As these can break various buttons, calculations, and functionality on the sheet, they have been removed.\n\nFor flavor names, try using single quotes ' as these has not yet caused any issues. For instance: Thaldrin 'Hawkeye' Ravenflock.`
let toast = getToastObject(INFO, "Special characters removed", message);