saving timebomb

This commit is contained in:
Olivier Gagnon
2021-11-11 20:42:19 -05:00
57 changed files with 338 additions and 345 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ export function buyDarkwebItem(itemName: string): void {
}
// return if the player doesn't have enough money
if (Player.money.lt(item.price)) {
if (Player.money < item.price) {
Terminal.error("Not enough money to purchase " + item.program);
return;
}