diff options
-rw-r--r-- | js/mapspecs.js | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/js/mapspecs.js b/js/mapspecs.js index ded7bfc..8bd3f6f 100644 --- a/js/mapspecs.js +++ b/js/mapspecs.js @@ -130,7 +130,7 @@ function grid_click(obj) { obj.cv = true;
childdiv.removeAttribute("class");
- childdiv.setAttribute("class", "grid_td_walls");
+ childdiv.setAttribute("class", "grid_td_walls");
if (typeof playerWallColor === 'undefined' || playerWallColor == '')
obj.style.backgroundColor = '#666666';
else
@@ -727,9 +727,6 @@ function dullColor(colorAsHex, value) { r = parseInt(r);
g = parseInt(g);
b = parseInt(b);
- // r = r + value;
- // g = g + value;
- // b = b + value;
return rgbToHex(r, g, b);
}
@@ -794,18 +791,3 @@ for (i=0;i<ARRcookies.length;i++) }
return "";
}
-
-
-//== Outdated functions
-var de = false;
-function displaymap(obj) {
- if (de == false) {
- obj.setAttribute('class', 'mapdisplay_up');
- }
-}
-function minmap(obj) {
- de = true;
- obj.setAttribute('class', 'mapdisplay');
- setTimeout("de = false;", 1000);
-}
-//== End
|