Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

API Paladin Aura - no Chat Output on Saving Throws

The "bolt-shield" Statusmarker is correctly set on my Tokens but for none of them a chat message is sent when making a saving throw. I am using the supported 5e by roll20 sheet.
So Think i know what the problem is: else if (msg.rolltemplate === 'simple' && msg.content.search(/{{rname=([A-z]* Save|\^{[A-z]*-save-u})}}/gi) !== -1) {             // Saving throw chat response for if a token has an aura bonus             const regexResult = /(?<={{charname=)\w*/i.exec(msg.content);             const nameInRoll = regexResult && regexResult[0]; // First name of the character             if (nameInRoll === null)                 return; // break if null Here it checks for a character name in the roll, but for all my saving throws the output doesnt show a character name like in the APIs demo. Did roll20 change the way saving throws are output or is there a way to fix this?
If anyone else has this problem the solution was to turn ADD CHARACTER NAME TO TEMPLATES to ON. Now its working. :)