From 5da42cdf7b229002c3667cfcab02ec969b86c65d Mon Sep 17 00:00:00 2001 From: jomo Date: Sun, 2 Nov 2014 05:34:01 +0100 Subject: [PATCH] use all the things --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index a22288c..cbde50d 100644 --- a/test/test.js +++ b/test/test.js @@ -8,7 +8,7 @@ var skins = require('../modules/skins'); var uuids = fs.readFileSync('test/uuids.txt').toString().split("\r\n"); // Get a random UUID in order to prevent rate limiting -var uuid = uuids[Math.floor((Math.random() * 200) + 1)]; +var uuid = uuids[Math.floor(Math.random() * uuids.length)]; // Only deletes files, doesn't delete directory. var deleteFolderRecursive = function(path) {