Which came first this or Powder Toy
Which came first this or Powder Toy




[0,0.5,0.9999999999999999,0.5,0.1,0,0.2,0.1]








[0,0.5,0.9999999999999999,0.5,0.1,0,0.2,0.1]randoms = 0;
randomValues = [0,0.5,1,0.5];
oldRandom = Math.random;
Math.random = function() {
value = randomValues[randoms];
randoms = (randoms + 1) % randomValues.length;
return value;
}randoms = 0;
randomValues = [0,0.5,0.9999999999999999,0.5];
oldRandom = Math.random;
Math.random = function() {
value = randomValues[randoms];
randoms = (randoms + 1) % randomValues.length;
return value;
}