From 85ad93105a0a62ba3fcae1de3ad4575bc641a580 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Tue, 9 Dec 2014 01:37:11 -0500 Subject: [PATCH] Make first spell more random --- js/magic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/magic.js b/js/magic.js index d9a7cc4..3a9d07b 100644 --- a/js/magic.js +++ b/js/magic.js @@ -189,7 +189,7 @@ window.onload = function () { // if enough time has passed, cast another spell to draw if (timeCounter >= waitTime && counting) { - cast(5, 5, 270, chain); // start position + cast(undefined, undefined, undefined, chain); // start position counting = false; }