summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--responses.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/responses.js b/responses.js
index d8f49ab..692d1f4 100644
--- a/responses.js
+++ b/responses.js
@@ -129,14 +129,12 @@ ${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);
})();
}