Don't need angle brackets anymore for party cast notifications

This commit is contained in:
Sabe Jones 2013-12-28 17:46:18 -06:00
parent ea0b5b9291
commit 47c4b1dbe5

View file

@ -370,7 +370,7 @@ api.cast = function(req, res) {
if (group) {
series.push(function(cb2){
var message = '`<'+user.profile.name+'> casts '+spell.text + (type=='user' ? ' on @'+found.profile.name : ' for the party')+'.`';
var message = '`'+user.profile.name+' casts '+spell.text + (type=='user' ? ' on @'+found.profile.name : ' for the party')+'.`';
group.sendChat(message);
group.save(cb2);
})