From 4dc5212edaf5e45b3fa10f9dceb5ee9752aad920 Mon Sep 17 00:00:00 2001 From: Daniel Bulant Date: Sun, 1 Mar 2020 19:33:11 +0100 Subject: [PATCH] Fix native plugin loading --- hooks.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hooks.js b/hooks.js index e636da7..901ed94 100644 --- a/hooks.js +++ b/hooks.js @@ -22,7 +22,8 @@ module.exports = class Hooks { e(this); } else { if(e.native){ - return app.use(e.exec); + app.use(e.exec); + continue; } if(!e.enabled || !e.exec)continue; this._plugins.push(e);