From 729b32e7099b9a225ea5bc4eaa81975ab51f6550 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Thu, 28 Sep 2017 12:59:30 -0400 Subject: [PATCH] Use a list for deck index Not terribly useful yet, but easier to manually add to --- server.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server.js b/server.js index 4208c3a..8074a0c 100644 --- a/server.js +++ b/server.js @@ -90,6 +90,7 @@ server.listen(process.env.PORT || port); console.log('listening on 8080'); function sendIndex(res) { + let decks = ["the_Unholy_Priest_update_2", "NZoths_Invasion_1.1"]; const html = ` @@ -97,7 +98,7 @@ function sendIndex(res) { `;