From 0d9c249e512ab90033eb15557bcd1e85b815dead Mon Sep 17 00:00:00 2001 From: danbulant Date: Thu, 3 Sep 2020 16:15:50 +0200 Subject: [PATCH] Remove default challenge type --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index fb16aa7..07d2119 100644 --- a/src/index.js +++ b/src/index.js @@ -9,7 +9,7 @@ const points = new Map(); app .use(msg => !msg.author.bot) // ignore bots .use(async msg => { - if(!challenge.get("type")) challenge.set("type", "0"); + if(!challenge.get("type")) challenge.set("type", null); if(msg.author.id === "694395936809418816" && msg.content === "!reset") { answers.clear(); challenge.clear();