Remove not needed code

This commit is contained in:
Raven Scott
2023-04-03 03:21:30 +02:00
parent 7a59ef68db
commit d8c69ba5fe
2 changed files with 2 additions and 4 deletions

View File

@ -41,7 +41,7 @@ module.exports = {
password: process.env.PASS
}
});
if (!response.data.questions) return interaction.editReply("You have no history in this session yet :) ");
const result = parseQuestionsAndAnswers(JSON.stringify(response.data));
@ -51,7 +51,5 @@ module.exports = {
}
interaction.editReply(pairsString);
})
if (err) console.error("woo" + err)
},
};