From 8e21c5ab28982b2cad112a19624750ab4ce6c309 Mon Sep 17 00:00:00 2001
From: Anu <anulithic@gmail.com>
Date: Mon, 27 Feb 2023 23:47:49 -0800
Subject: [PATCH] Remove superfluous comma

---
 src/events/scheduled/seRaiding.js | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/events/scheduled/seRaiding.js b/src/events/scheduled/seRaiding.js
index 34aae3e09ff..b5cf8b1bda2 100644
--- a/src/events/scheduled/seRaiding.js
+++ b/src/events/scheduled/seRaiding.js
@@ -163,15 +163,15 @@ App.Events.SERaiding = class SERaiding extends App.Events.BaseEvent {
 				case "classical musician":
 					r.push(`is the concert hall at the heart of an aristocratic old world city. The concert hall itself would usually not be considered a choice target, except that tonight its stage is graced by a renowned orchestra. The pride of the orchestra's cast is a `);
 					if (slave.visualAge < 13) {
-						r.push(`little ${girl},`);
+						r.push(`little ${girl}`);
 					} else if (slave.visualAge <= 18) {
-						r.push(`teenager,`);
+						r.push(`teenager`);
 					} else if (slave.visualAge <= 24) {
-						r.push(`young ${woman},`);
+						r.push(`young ${woman}`);
 					} else if (slave.visualAge <= 32) {
-						r.push(`${woman},`);
+						r.push(`${woman}`);
 					} else {
-						r.push(`mature ${woman},`);
+						r.push(`mature ${woman}`);
 					}
 					r.push(`whose skill with ${his} instrument has been known to move listeners to tears.`);
 					break;
-- 
GitLab