From 23e6c6a6f721993b30477ece5f85e64fb808a841 Mon Sep 17 00:00:00 2001 From: Ben F Date: Mon, 14 Oct 2013 01:39:47 +1300 Subject: [PATCH] Add /ignore to help --- config/commands.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/commands.js b/config/commands.js index 241e303009..f619f5cd8b 100644 --- a/config/commands.js +++ b/config/commands.js @@ -1167,6 +1167,11 @@ var commands = exports.commands = { matched = true; this.sendReply('/join [roomname] - Attempts to join the room [roomname].'); } + if (target === 'all' || target === 'ignore') { + matched = true; + this.sendReply('/ignore [user] - Ignores all messages from the user [user].'); + this.sendReply('Note that staff messages cannot be ignored.'); + } if (target === '%' || target === 'invite') { matched = true; this.sendReply('/invite [username], [roomname] - Invites the player [username] to join the room [roomname].');