Skip to content
This repository has been archived by the owner on Jan 8, 2019. It is now read-only.

Commit

Permalink
Merge pull request #173 from almossawi/master
Browse files Browse the repository at this point in the history
Fix bug 1003286 - map is at times empty
  • Loading branch information
almossawi committed Apr 29, 2014
2 parents 3d81d7e + b4d3fa0 commit 77a740a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mrburns/main/static/js/map.js
Expand Up @@ -498,7 +498,7 @@ $(document).ready(function() {
}
else {
//decrement every 1s, since each count is worth 1s of screen time
if((time_in_ms % (1000 / multiplier)) === 0) {
if((time_in_ms % 1000) === 0) {
place.count = place.count - 1;
}

Expand Down

0 comments on commit 77a740a

Please sign in to comment.