diff --git a/dialog.js b/dialog.js index be47035..ac98fd4 100644 --- a/dialog.js +++ b/dialog.js @@ -157,7 +157,7 @@ function VendingMachinePurchase() { }); nodeCandy.requirements.push(function(player) { - return player.cash > 2; + return player.cash >= 2; }); } @@ -171,7 +171,7 @@ function VendingMachinePurchase() { }); nodeSoda.requirements.push(function(player) { - return player.cash > 2; + return player.cash >= 2; }); } @@ -187,7 +187,7 @@ function VendingMachinePurchase() { }); nodeMicro.requirements.push(function(player) { - return player.cash > 10; + return player.cash >= 10; }); } diff --git a/objects.js b/objects.js index 7c100a7..ba21a37 100644 --- a/objects.js +++ b/objects.js @@ -45,6 +45,7 @@ function Toilet() { lines.push("But nothing happens."); } else { lines.push("You grunt and clench, squeezing out the remains of your former prey."); + player.bowels.fullness = 0; } if (player.bowels.contents.length > 0) {