From 3b63160255970afe4275a660b7006867bd78828f Mon Sep 17 00:00:00 2001 From: DCoded <dcoded@live.com> Date: Mon, 21 Dec 2020 23:08:57 -0500 Subject: [PATCH] Bugfix --- src/interaction/siFinancial.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interaction/siFinancial.js b/src/interaction/siFinancial.js index 9985fef2c62..25968a6cad7 100644 --- a/src/interaction/siFinancial.js +++ b/src/interaction/siFinancial.js @@ -138,7 +138,7 @@ App.UI.SlaveInteract.financial = function(slave) { } else { if (V.PC.career === "escort") { r.push(`You are starring in hardcore porn once more.`); - } else if (V.PC.actualAge < $minimumSlaveAge) { + } else if (V.PC.actualAge < V.minimumSlaveAge) { r.push(`You are taking part in porn that may disturb people.`); } else { r.push(`You are starring in some hardcore porn.`); @@ -154,7 +154,7 @@ App.UI.SlaveInteract.financial = function(slave) { ); } App.Events.addNode(el, r, "div"); - } + } } if (V.studioFeed === 1) { r = []; -- GitLab