Skip to content

Commit

Permalink
fix sell bottle button being inversely disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
TehBrian committed Jul 17, 2024
1 parent cd8f741 commit 2102a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Stage1.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
const needsHelp: boolean = $derived(momDividends && money < fillBottleCost && filledBottles <= 0);
const canFillBottle: boolean = $derived(emptyBottles > 0 && money >= fillBottleCost);
const canSellBottle: boolean = $derived(filledBottles < 1);
const canSellBottle: boolean = $derived(filledBottles > 0);
const robertBetter: boolean = $derived(robertSoldBottles >= 50);
const robertGreedy: boolean = $derived(robertSoldBottles >= 130);
Expand Down

0 comments on commit 2102a08

Please sign in to comment.