瀏覽代碼

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) {


Loading…
取消
儲存