From 582b1eca4601b42fa4a869bd25f5024aa015752e Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Tue, 31 Jan 2017 13:34:03 -0800 Subject: [PATCH] Update max lives in shortbow to 6 --- .../DomainContent/Toybox/towerDefense/shortbowGameManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unpublishedScripts/DomainContent/Toybox/towerDefense/shortbowGameManager.js b/unpublishedScripts/DomainContent/Toybox/towerDefense/shortbowGameManager.js index 0745597119..5a6273b755 100644 --- a/unpublishedScripts/DomainContent/Toybox/towerDefense/shortbowGameManager.js +++ b/unpublishedScripts/DomainContent/Toybox/towerDefense/shortbowGameManager.js @@ -272,7 +272,7 @@ ShortbowGameManager.prototype = { // Initialize game state this.waveNumber = 0; this.setScore(0); - this.setLivesLeft(60); + this.setLivesLeft(6); this.nextWaveTimer = Script.setTimeout(this.startNextWave.bind(this), 100); this.spawnEnemyTimers = [];