From 433bb9baaaa75ecd76971d070c37e468ab797dee Mon Sep 17 00:00:00 2001 From: Terry Hearst Date: Tue, 7 Feb 2023 23:20:28 -0500 Subject: [PATCH] gem -> diamond --- src/MarbleWorld.hx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/MarbleWorld.hx b/src/MarbleWorld.hx index 78653d60..2ef1b552 100644 --- a/src/MarbleWorld.hx +++ b/src/MarbleWorld.hx @@ -1480,7 +1480,7 @@ class MarbleWorld extends Scheduler { // Show a notification (and play a sound) based on the gems remaining if (this.gemCount == this.totalGems) { - string = "You have all the gems, head for the finish!"; + string = "You have all the diamonds, head for the finish!"; // if (!this.rewinding) AudioManager.playSound(ResourceLoader.getResource('data/sound/gotallgems.wav', ResourceLoader.getAudio, this.soundResources)); @@ -1491,13 +1491,13 @@ class MarbleWorld extends Scheduler { // this.touchFinish(completionOfImpact); // } } else { - string = "You picked up a gem. "; + string = "You picked up a diamond. "; var remaining = this.totalGems - this.gemCount; if (remaining == 1) { - string += "Only one gem to go!"; + string += "Only one diamond to go!"; } else { - string += '${remaining} gems to go!'; + string += '${remaining} diamonds to go!'; } // if (!this.rewinding) @@ -1634,7 +1634,7 @@ class MarbleWorld extends Scheduler { if (this.gemCount < this.totalGems) { AudioManager.playSound(ResourceLoader.getResource('data/sound/missinggems.wav', ResourceLoader.getAudio, this.soundResources)); - displayAlert("You can't finish without all the gems!!"); + displayAlert("You can't finish without all the diamonds!!"); } else { this.endPad.spawnFirework(this.timeState); this.finishTime = this.timeState.clone();