summaryrefslogtreecommitdiff
path: root/responses.js
diff options
context:
space:
mode:
Diffstat (limited to 'responses.js')
-rw-r--r--responses.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/responses.js b/responses.js
index 18b42a4..55baabb 100644
--- a/responses.js
+++ b/responses.js
@@ -129,12 +129,14 @@ ${picks}
module.exports.rotateGameStatus = (client) => {
(async function rotate() {
+ /*
const gamers = await api.getGamers(),
idx = Math.floor(Math.random() * (gamers.length - 1)) + 1;
if (PREVIEW) await client.user.setGame(
`?v ${gamers[idx]} | preview.vainsocial.com`);
else await client.user.setGame(
`!v ${gamers[idx]} | vainsocial.com`);
+ */
setTimeout(rotate, IGN_ROTATE_TIMEOUT * 1000);
})();
}