diff --git a/lib/reporter.js b/lib/reporter.js index 856855f..108a28c 100644 --- a/lib/reporter.js +++ b/lib/reporter.js @@ -67,7 +67,7 @@ class Reporter { sendCharacter(characterId, text) { const character = this.roll20.getObj('character', characterId); const charName = character.get('name').replace(/"/g, '\''); - this.roll20.sendChat('', `/w "${charName}" ${text}`); + this.roll20.sendChat(`character|${characterId}`, `/w "${charName}" ${text}`); if (!_.isEmpty(character.get('controlledby'))) { this.roll20.sendChat('', `/w gm ${text}`); }