From 9647beda49a91a222b501b365e5b83fc6f16d570 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Wed, 14 Mar 2018 19:01:52 -0400 Subject: [PATCH] Prey are only mentioned in scat if they have it enabled --- customs.js | 1 + vore.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/customs.js b/customs.js index a153c0b..eee6e37 100644 --- a/customs.js +++ b/customs.js @@ -27,6 +27,7 @@ function Geta() { this.struggles.push(new rub(this)); + this.prefs.scat = false; this.prefs.analVore = false; } diff --git a/vore.js b/vore.js index b44fb30..94ac97a 100644 --- a/vore.js +++ b/vore.js @@ -330,7 +330,8 @@ function WasteContainer(name) { }; this.finish = function(prey) { - this.contents.push(prey); + if (prey.prefs.scat) + this.contents.push(prey); }; }