Skip to content

Commit

Permalink
Added multiplayer time offset value
Browse files Browse the repository at this point in the history
  • Loading branch information
kniffen committed Nov 19, 2022
1 parent 5d26dd9 commit c8c6baf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Game.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"timestamp",
"simulationTimestamp",
"renderTimestamp",
"multiplayerTimeOffset",
"time",
"game",
"paused",
Expand All @@ -44,7 +45,8 @@
{name: "Paused", value: this.paused ? "YES" : "NO"},
{name: "Uptime", value: this.formatTimestamp(this.timestamp.value)},
{name: "Simulation uptime", value: this.formatTimestamp(this.simulationTimestamp.value)},
{name: "Render uptime", value: this.formatTimestamp(this.renderTimestamp.value) },
{name: "Render uptime", value: this.formatTimestamp(this.renderTimestamp.value)},
{name: "MP time offset", value: this.multiplayerTimeOffset.value},
{name: "Game time", value: this.gameTime},
{name: "Maximum trailers", value: this.maxTrailerCount},
{name: "Scale", value: this.scale}
Expand Down

0 comments on commit c8c6baf

Please sign in to comment.