From 58ee2c6c2d85fbb66e5cc425b4ecbaf8977d7668 Mon Sep 17 00:00:00 2001 From: SolarisFox Date: Sat, 25 Jul 2015 23:20:13 -0700 Subject: [PATCH] /dexsearch: exclude bide as a priority move --- chat-plugins/info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chat-plugins/info.js b/chat-plugins/info.js index 4bd475a650..73faf1643d 100644 --- a/chat-plugins/info.js +++ b/chat-plugins/info.js @@ -609,7 +609,7 @@ var commands = exports.commands = { var priorityMoves = []; for (var move in Tools.data.Movedex) { var moveData = Tools.getMove(move); - if (moveData.category === "Status") continue; + if (moveData.category === "Status" || moveData.id === "bide") continue; if (moveData.priority > 0) priorityMoves.push(move); } for (var mon in dex) {