master
j 2024-04-04 23:11:33 -04:00
parent 7651df9d3b
commit 3ad1191f98
1 changed files with 1 additions and 1 deletions

View File

@ -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.`
};
}