From 3abcb3c4d2258fc25d4de43c95f46fdf15724055 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Wed, 2 Jan 2019 18:05:45 -0600 Subject: [PATCH] Fixed stench not inheriting the active properly in some cases --- game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.js b/game.js index dc52999..b3fdee2 100644 --- a/game.js +++ b/game.js @@ -3547,7 +3547,7 @@ function scat(vol, active=true) { macro.arouse(50); if (macro.stenchEnabled && macro.baseScatStenchArea > 0) { - scat_stench(area*macro.baseScatStenchArea); + scat_stench(area*macro.baseScatStenchArea, active); } }