diff --git a/src/events/scheduled/seRaiding.js b/src/events/scheduled/seRaiding.js index 34aae3e09ffab79f05258ff5367d752f8dc26ee5..b5cf8b1bda2f2960324189154dd7041c756d797d 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;