Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ysurac committed Dec 23, 2016
1 parent b2a8af9 commit 9288561
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/map.js.php
Original file line number Diff line number Diff line change
Expand Up @@ -1191,8 +1191,8 @@ function getLiveData(click)
function(){if (noTimeout) getLiveData(0)},<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000; else print '30000'; ?>);
var currentdate = new Date();
var currentyear = new Date().getFullYear();
var begindate = new Date(Date.UTC(currentyear,11,23,2,0,0,0));
var enddate = new Date(Date.UTC(currentyear,11,24,2,0,0,0));
var begindate = new Date(Date.UTC(currentyear,11,24,2,0,0,0));
var enddate = new Date(Date.UTC(currentyear,11,25,2,0,0,0));
if (currentdate.getTime() > begindate.getTime() && currentdate.getTime() < enddate.getTime()) {
update_santaLayer(false);
}
Expand Down

0 comments on commit 9288561

Please sign in to comment.