From 61312a2fd463e68a0fa284ef8d4afda50d8c4cf1 Mon Sep 17 00:00:00 2001 From: Golen Date: Tue, 20 Aug 2024 19:53:42 +0200 Subject: [PATCH] Change currency to dollar --- src/components/Customer.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Customer.ts b/src/components/Customer.ts index fdd6e21..404a9bb 100644 --- a/src/components/Customer.ts +++ b/src/components/Customer.ts @@ -222,7 +222,7 @@ export class Customer extends Button { this.scene, this.x - 70 + Math.random() * 80, this.y - 80, - "+" + this.moneySpent + " €", + "+$" + this.moneySpent, "yellow", 40, true, @@ -454,7 +454,7 @@ export class Customer extends Button { this.scene, this.x - 70 + Math.random() * 80, this.y - 80, - "+" + this.moneySpent + " €", + "+$" + this.moneySpent, "yellow", 40, true, @@ -470,7 +470,7 @@ export class Customer extends Button { this.scene, this.x - 40 + Math.random() * 80, this.y - 20, - "Tips +" + this.tips + " €", + "Tips +$" + this.tips, "yellow", 40, true,