diff --git a/chat-plugins/info.js b/chat-plugins/info.js index 31b72cb149..fb205f4a06 100644 --- a/chat-plugins/info.js +++ b/chat-plugins/info.js @@ -1499,6 +1499,25 @@ var commands = exports.commands = { this.sendReplyBox("Pokémon Showdown Forums"); }, + suggestions: function (target, room, user) { + if (!this.canBroadcast()) return; + this.sendReplyBox("Make a suggestion for Pokémon Showdown"); + }, + + bugreport: 'bugs', + bugs: function (target, room, user) { + if (!this.canBroadcast()) return; + if (room.battle) { + this.sendReplyBox("
QuestionsBug Reports
"); + } else { + this.sendReplyBox( + "Have a replay showcasing a bug on Pokémon Showdown?
" + + "- Questions
" + + "- Bug Reports" + ); + } + }, + avatars: function (target, room, user) { if (!this.canBroadcast()) return; this.sendReplyBox('You can by clicking on it in the menu in the upper right. Custom avatars are only obtainable by staff.');