Skip to content

Commit 0e49899

Browse files
fix: Missing function invocation
1 parent 3860807 commit 0e49899

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)