From f14b0fbcf0dbfd99f22885f35ec2df0ff35b9b04 Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@mailbox.org> Date: Thu, 15 Sep 2022 22:13:09 +0200 Subject: [PATCH] Fix missing whitespace in long slave pit sentence --- src/npc/descriptions/longSlave.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/npc/descriptions/longSlave.js b/src/npc/descriptions/longSlave.js index a3a51cf51cc..fbb88ab705b 100644 --- a/src/npc/descriptions/longSlave.js +++ b/src/npc/descriptions/longSlave.js @@ -343,10 +343,10 @@ App.Desc.longSlave = function(slave, {descType, market = 0, marketText, noArt, l if (losses > 0) { r.push(`with ${numberWithPluralOne(wins, "win")} and ${numberWithPluralOne(losses, "loss", "losses")}.`); } else { - r.push(`${wins > 2 ? `all of` : `both of`}which ${he} won.`); + r.push(`${wins > 2 ? `all of` : `both of`} which ${he} won.`); } } else { - r.push(`${losses > 2 ? `all of` : `both of`}which ${he} lost.`); + r.push(`${losses > 2 ? `all of` : `both of`} which ${he} lost.`); } } -- GitLab