mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-07 10:02:24 +02:00
Fix scoreboard not updating in shortbow
This commit is contained in:
parent
b60651487e
commit
4df2489ff9
1 changed files with 8 additions and 4 deletions
|
@ -120,22 +120,26 @@ function createLocalGame() {
|
|||
goalPosition.y += BASES_HEIGHT - ROOF_HEIGHT;
|
||||
|
||||
waveDisplayID = spawnTemplate("SB.DisplayWave", {
|
||||
parentID: scoreboardID
|
||||
parentID: scoreboardID,
|
||||
serverScripts: "null"
|
||||
});
|
||||
entityIDs.push(waveDisplayID);
|
||||
|
||||
scoreDisplayID = spawnTemplate("SB.DisplayScore", {
|
||||
parentID: scoreboardID
|
||||
parentID: scoreboardID,
|
||||
serverScripts: "null"
|
||||
});
|
||||
entityIDs.push(scoreDisplayID);
|
||||
|
||||
livesDisplayID = spawnTemplate("SB.DisplayLives", {
|
||||
parentID: scoreboardID
|
||||
parentID: scoreboardID,
|
||||
serverScripts: "null"
|
||||
});
|
||||
entityIDs.push(livesDisplayID);
|
||||
|
||||
highScoreDisplayID = spawnTemplate("SB.DisplayHighScore", {
|
||||
parentID: scoreboardID
|
||||
parentID: scoreboardID,
|
||||
serverScripts: "null"
|
||||
});
|
||||
entityIDs.push(highScoreDisplayID);
|
||||
|
||||
|
|
Loading…
Reference in a new issue