From 1ed0fbfa8b3c7b9e395d2fbcaf09344f29e54415 Mon Sep 17 00:00:00 2001 From: ryanmarshall Date: Sat, 12 Mar 2011 17:44:36 -0600 Subject: [PATCH] fixed random to add #6 --- et.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/et.js b/et.js index f680dbc..511b85a 100644 --- a/et.js +++ b/et.js @@ -75,7 +75,7 @@ dojo.addOnLoad(function() { }); function random_file() { - num = 1 + (Math.floor(Math.random()*5)); + num = 1 + (Math.floor(Math.random()*6)); //num = 6; return 'etsound' + num; }