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