From 96bd6215668307bc77dc6daffdeeb891e0f51f32 Mon Sep 17 00:00:00 2001 From: Peter Bjerg Lidegaard Date: Mon, 4 May 2026 19:54:02 +0200 Subject: [PATCH] Changed separator to whitespace --- ADnD_2E_Revised/2ESheet.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ADnD_2E_Revised/2ESheet.html b/ADnD_2E_Revised/2ESheet.html index 0ebb44099a..a702c03ced 100644 --- a/ADnD_2E_Revised/2ESheet.html +++ b/ADnD_2E_Revised/2ESheet.html @@ -71645,7 +71645,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);