diff --git a/src/game/gameFlow.ts b/src/game/gameFlow.ts index 37d1e7b..5ddb9b2 100644 --- a/src/game/gameFlow.ts +++ b/src/game/gameFlow.ts @@ -251,7 +251,7 @@ class GameFlow { // If not enough money, return an error message return { success: false, - errorMessage: `⚠️ You do not have enough money for ${selectedWeapon.name}. You have $${this.gameState.cashLeftAfterInitialPurchases} remaining.` + errorMessage: `⚠️ You do not have enough money for the ${selectedWeapon.name}. You have $${this.gameState.cashLeftAfterInitialPurchases} remaining.` }; }