Use backticks in 'quest started' system message (#8503)

Fixes #8445
This commit is contained in:
Megan Tiu 2017-02-26 01:03:58 -05:00 committed by Alys
parent dfcd32d54a
commit 6f0d0b1fb3

View file

@ -554,7 +554,7 @@ schema.methods.startQuest = async function startQuest (user) {
});
});
});
this.sendChat(`Your quest, ${quest.text('en')}, has started.`, null, {
this.sendChat(`\`Your quest, ${quest.text('en')}, has started.\``, null, {
participatingMembers: this.getParticipatingQuestMembers().join(', '),
});
};