ソースを参照

Fixed toilet not emptying bowels. Fixed vending machine only working if you have *more* than the required amount of money

tags/v0.2.8
Fen Dweller 7年前
コミット
1049531f6c
2個のファイルの変更4行の追加3行の削除
  1. +3
    -3
      dialog.js
  2. +1
    -0
      objects.js

+ 3
- 3
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;
});
}



+ 1
- 0
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) {


読み込み中…
キャンセル
保存