From 54a4baedaf29f593f5ba6248a3c6a475835faae2 Mon Sep 17 00:00:00 2001 From: maxalexandderpi <49593536+maxalexandderpi@users.noreply.github.com> Date: Mon, 5 Aug 2019 23:59:59 -0500 Subject: [PATCH] Let users see who made a hangman/poll (#5680) --- server/chat-plugins/hangman.js | 2 +- server/chat-plugins/poll.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/chat-plugins/hangman.js b/server/chat-plugins/hangman.js index 8c9b42ca82d0..1bab1fbcd4b6 100644 --- a/server/chat-plugins/hangman.js +++ b/server/chat-plugins/hangman.js @@ -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: % @ # & ~"], diff --git a/server/chat-plugins/poll.js b/server/chat-plugins/poll.js index 19112cfa1dbe..4b06250d0cb4 100644 --- a/server/chat-plugins/poll.js +++ b/server/chat-plugins/poll.js @@ -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: % @ # & ~`],