Skip to content

Commit

Permalink
Let users see who made a hangman/poll (#5680)
Browse files Browse the repository at this point in the history
  • Loading branch information
mia-pi-git authored and Zarel committed Aug 6, 2019
1 parent 00184f6 commit 54a4bae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/chat-plugins/hangman.js
Expand Up @@ -250,7 +250,7 @@ const commands = {
game.display(user, true);

this.modlog('HANGMAN');
return this.privateModAction(`(A game of hangman was started by ${user.name}.)`);
return this.addModAction(`A game of hangman was started by ${user.name}.`);
},
createhelp: ["/hangman create [word], [hint] - Makes a new hangman game. Requires: % @ # & ~"],

Expand Down
2 changes: 1 addition & 1 deletion server/chat-plugins/poll.js
Expand Up @@ -267,7 +267,7 @@ const commands = {

this.roomlog(`${user.name} used ${message}`);
this.modlog('POLL');
return this.privateModAction(`(A poll was started by ${user.name}.)`);
return this.addModAction(`A poll was started by ${user.name}.`);
},
newhelp: [`/poll create [question], [option1], [option2], [...] - Creates a poll. Requires: % @ # & ~`],

Expand Down

0 comments on commit 54a4bae

Please sign in to comment.