From fbf53240050089c65e7f1df2a72d714317ff22d8 Mon Sep 17 00:00:00 2001 From: Talor Berthelson Date: Wed, 21 Jul 2021 10:37:38 -0400 Subject: [PATCH] Added Dollywood --- .gitignore | 2 ++ parkscord.js | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5a76fda..570e2ef 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ themeparks.db node_modules/ package-lock.json .nova/ +Parkscord.sublime-project +Parkscord.sublime-workspace diff --git a/parkscord.js b/parkscord.js index 6cdc019..60171d1 100644 --- a/parkscord.js +++ b/parkscord.js @@ -84,8 +84,11 @@ client.on("message", (msg) => { } else if (command === "sfft") { console.log("!q sfft command"); var selectedpark = Parks.SixFlagsFiestaTexas; + } else if (command === "dw" || command === "dolly") { + console.log("!q dw command"); + var selectedpark = Parks.Dollywood; } else { - msg.reply(command + " is not available yet."); + msg.reply(command + " is not available yet or is not a valid park."); return; } console.log(selectedpark);