Ace Rimmer wrote:World Cup 2011 doesn't show up right in Watched games anymore. I'm pretty sure it did previously
Okay, not a JavaScript programmer (and I probably haven't written a program since college, which was, like, 30 years ago, when FORTRAN was all the rage) but I did notice that the map thumbnails were not displaying correctly for Closed maps and after hours (seriously, hours) of investigation and experimentation I found that it is a simple fix.
In the:
//--------- Map object functions ---------//
section, under the line:
switch (map.status) {
you need to add the line:
case 'C': status = MapNormal; break;
I put mine between case 'N' and case 'B'. I don't know if it matters but I'm not sure what is going on with case 'R', so you should maybe, at least, put it after that line (like I said, not a JavaScript programmer).
P.S. Oh, btw, Dako, thanks for the script!