Beyond20

From Omnia
Jump to navigation Jump to search
C:\src\Beyond20>git diff -r 591f367495501a287464b3cc62b02b45b5a0975f
diff --git a/dist/roll20.js b/dist/roll20.js
index d28cc5c..2778cc0 100644
--- a/dist/roll20.js
+++ b/dist/roll20.js
@@ -3164,14 +3164,14 @@ function template(request, name, properties) {

     if (request.whisper == WhisperType.HIDE_NAMES) {
         if (properties["charname"])
-            properties["charname"] = "???"
+            properties["charname"] = ""
         // Take into account links for disabled auto-roll-damages option
         if (properties["rname"])
             properties["rname"] = properties["rname"].includes("](!") ?
-                properties["rname"].replace(/\[[^\]]*\]\(\!/, "[???](!") : "???";
+                properties["rname"].replace(/\[[^\]]*\]\(\!/, "[???](!") : "";
         if (properties["rnamec"])
             properties["rnamec"] = properties["rnamec"].includes("](!") ?
-                properties["rnamec"].replace(/\[[^\]]*\]\(\!/, "[???](!") : "???";
+                properties["rnamec"].replace(/\[[^\]]*\]\(\!/, "[???](!") : "";
         delete properties["description"];
     }
     for (let key in properties)