Make first spell more random

This commit is contained in:
Tyler Hallada 2014-12-09 01:37:11 -05:00
parent 20980a8a9c
commit 85ad93105a

View File

@ -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;
}