From 41373e171883757d78a235361aa0fc5b90eff2c6 Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@mailbox.org> Date: Sat, 17 Sep 2022 15:12:22 +0200 Subject: [PATCH] Fix mercenary selling decreasing devotion instead of trust --- src/interaction/sellSlave.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interaction/sellSlave.js b/src/interaction/sellSlave.js index 293718ec20c..3e6d68a6558 100644 --- a/src/interaction/sellSlave.js +++ b/src/interaction/sellSlave.js @@ -2723,7 +2723,7 @@ App.Interact.sellSlave = function(slave) { r.push(`The mercenary sniper greets ${slave.slaveName} before the two of them head off for a battlefield halfway around the world. "Let's hope you've got a good eye for political assassinations," he says humorlessly.`); for (const s of V.slaves) { if (s.skill.combat <= 15) { - s.devotion -= 3; + s.trust -= 3; slaveImpact = 1; } } -- GitLab