summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorPatrick Davison <snapwilliam@gmail.com>2013-03-13 02:57:50 -0700
committerPatrick Davison <snapwilliam@gmail.com>2013-03-13 02:57:50 -0700
commitd26206b8dfb2f6c9775c0a7f111e0d4caed53fe7 (patch)
tree03562ad8bd3a4b9efc89ecb49ccdd557f68ec57b /js
parent32cce4bee8a242f7a2e6d6a9e1c9e77b4af87728 (diff)
downloadpathery-d26206b8dfb2f6c9775c0a7f111e0d4caed53fe7.tar.xz
Insane speed achievement front end.
Diffstat (limited to 'js')
-rw-r--r--js/mapspecs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/mapspecs.js b/js/mapspecs.js
index dbb1c60..5a124b1 100644
--- a/js/mapspecs.js
+++ b/js/mapspecs.js
@@ -1013,7 +1013,7 @@ function getSpeedOptions(mapID) {
listObj[2] = 'Med';
listObj[3] = 'Fast';
listObj[4] = 'Ultra';
- listObj[5] = 'Insane';
+ if (userObj.hasInsaneSpeed) listObj[5] = 'Insane';
var r = '';
r += " <select onChange='savePref(\"speed\", this.value)' id='"+mapID+",speed'>";
for (var i in listObj) {