remade queue logic

This commit is contained in:
2022-02-01 13:47:52 -06:00
parent dc0cc6685d
commit cf453957e9
7 changed files with 278 additions and 249 deletions

View File

@@ -8,11 +8,11 @@ cd ../..
npm install
#discord token
[ ! -f "token" ] && touch "token"
[ ! -f "token.txt" ] && touch "token.txt"
if [ ! -s "token" ]
if [ ! -s "token.txt" ]
then
printf "Enter your discord bot token: "
read token
printf $token > "token"
printf $token > "token.txt"
fi