From 757f99eab1157a2550a824936313d7f665c69578 Mon Sep 17 00:00:00 2001 From: Brian Date: Tue, 27 Jan 2015 01:17:16 -0600 Subject: [PATCH] Fix typo --- Flight/Flight.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flight/Flight.js b/Flight/Flight.js index 7428bf7cad..a52b337748 100644 --- a/Flight/Flight.js +++ b/Flight/Flight.js @@ -36,7 +36,7 @@ bshields.flight = (function() { }); }, help: function(command, args, msg) { - if (_.isFunction(commands['help_' + command]) { + if (_.isFunction(commands['help_' + command])) { commands['help_' + command](args, msg); } },