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

@ -23,7 +23,7 @@ module.exports = {
},
{
name: "Other",
value: "USB Liveboot\nSingle Task Only - 256 Max Token Output"
value: "USB Liveboot\nNo VideoCard on Board!\nSingle Task Only - 256 Max Token Output"
}
];

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)
},
};