From 643e1b7e9077ddb85b90db66f33ce720cf83ddc5 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sun, 14 Jun 2020 01:21:56 -0400 Subject: [PATCH] svorn fix --- src/npc/descriptions/longSlave.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/npc/descriptions/longSlave.js b/src/npc/descriptions/longSlave.js index 5d1e11dc13c..2ebeb71c204 100644 --- a/src/npc/descriptions/longSlave.js +++ b/src/npc/descriptions/longSlave.js @@ -419,9 +419,11 @@ App.Desc.longSlave = function({slave = V.activeSlave, saleDescription = V.saleDe if (!hasAnyArms(slave)) { r.push(`creating two bushy patches under where ${his} arms used to be.`); } else { - r.push(`so it can be seen poking out from under ${his} arm`); + r.push(`so it can be seen poking out from under ${his}`); if (hasBothArms(slave)) { - r.push(`s`); + r.push(`arms`); + } else { + r.push(`arm`); } r.push(`at all times.`); } -- GitLab