BlogNomic has moved!

The game is now running at blognomic.com

Wednesday, February 09, 2005

Aeons are Awesome

I went ahead and fixed the Aeon clock, which was negative. I think the template Javascript code is not correct. In the function:
var year = (dt.getDate() - X + (gmt > 24)) * 10;
The documentation says that X should be the date of the ascension (day only), but that didn't work.

Instead I used:
var year = (dt.getDate() + Y + (gmt > 24)) * 10;
Where Y is the number of days remaining in the month of the Ascension. Simon's ascension was on January 28th. That left three days in the month of January, so I used Y of +3. That gives what I think should be the correct Calendar date.