Added Dollywood

This commit is contained in:
Talor Berthelson
2021-07-21 10:37:38 -04:00
parent dbe563c506
commit fbf5324005
2 changed files with 6 additions and 1 deletions

2
.gitignore vendored
View File

@@ -6,3 +6,5 @@ themeparks.db
node_modules/ node_modules/
package-lock.json package-lock.json
.nova/ .nova/
Parkscord.sublime-project
Parkscord.sublime-workspace

View File

@@ -84,8 +84,11 @@ client.on("message", (msg) => {
} else if (command === "sfft") { } else if (command === "sfft") {
console.log("!q sfft command"); console.log("!q sfft command");
var selectedpark = Parks.SixFlagsFiestaTexas; var selectedpark = Parks.SixFlagsFiestaTexas;
} else if (command === "dw" || command === "dolly") {
console.log("!q dw command");
var selectedpark = Parks.Dollywood;
} else { } else {
msg.reply(command + " is not available yet."); msg.reply(command + " is not available yet or is not a valid park.");
return; return;
} }
console.log(selectedpark); console.log(selectedpark);