Skip to content

Commit 76d681f

Browse files
authored
Merge pull request nuclear-unicorn#139 from kitten-science/fix/performance
fix: Missing function invocation
2 parents 3860807 + 0e49899 commit 76d681f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

game.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4612,13 +4612,13 @@ dojo.declare("com.nuclearunicorn.game.ui.GamePage", null, {
46124612
return;
46134613
}
46144614

4615-
var timestampStart = Date.now;
4615+
var timestampStart = Date.now();
46164616

46174617
this.update();
46184618
this.calendar.tick();
46194619
this.ticks++;
46204620

4621-
var timestampEnd = Date.now;
4621+
var timestampEnd = Date.now();
46224622

46234623
this.totalUpdateTimeTicks++;
46244624

0 commit comments

Comments
 (0)