From 2eff1de09382d4a0a2ddcfe21193a1bb307b1ff5 Mon Sep 17 00:00:00 2001
From: Arkerthan <arkerthan@gmail.com>
Date: Mon, 28 Jun 2021 17:23:59 +0200
Subject: [PATCH] fix missing string interpolation in  PEPitFight

---
 src/events/PE/pePitFight.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/events/PE/pePitFight.js b/src/events/PE/pePitFight.js
index 105239ddeaf..51190b05450 100644
--- a/src/events/PE/pePitFight.js
+++ b/src/events/PE/pePitFight.js
@@ -38,7 +38,7 @@ App.Events.PEPitFight = class PEPitFight extends App.Events.BaseEvent {
 		App.Events.addParagraph(node, r);
 		r = [];
 
-		r.push(`Across the ring, ${his} opponent's owner nods civilly to you and examines slave.slaveName.`);
+		r.push(`Across the ring, ${his} opponent's owner nods civilly to you and examines ${slave.slaveName}.`);
 
 		if (slave.skill.combat > 0) {
 			r.push(`${His} combat skills greatly increase ${his} deadliness.`);
-- 
GitLab