Merge branch 'master' of ssh://gitea.calebfontenot.com:25566/CCF_100/NoMoreAcronyms

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2023-04-04 21:08:31 -05:00
commit 5d7005696f

View File

@ -23,15 +23,16 @@ module.exports = {
if (inputString.length > 1000) { if (inputString.length > 1000) {
await interaction.reply('String is too big. Resultant output would be too big to send to Discord.') await interaction.reply('String is too big. Resultant output would be too big to send to Discord.')
} }
var output;
switch (design) { switch (design) {
case 1: case 1:
var output = design1(inputString); output = design1(inputString);
break; break;
case 2: case 2:
var output = design2(inputString); output = design2(inputString);
break; break;
case 3: case 3:
var output = design3(inputString); output = design3(inputString);
break; break;
} }