From 55545daaea5c1da682a8de1d254df0c7d95a3edf Mon Sep 17 00:00:00 2001 From: Vas <whiterocket@outlook.com> Date: Fri, 22 Jun 2018 01:07:18 +0300 Subject: [PATCH] fix missing dollaridoos in template strings --- TODO.txt | 5 ++++- src/js/DefaultRules.tw | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/TODO.txt b/TODO.txt index 04efe8530af..941b0adb43f 100644 --- a/TODO.txt +++ b/TODO.txt @@ -9,4 +9,7 @@ Events: Bugs: -sometimes troop counts breaks --sometimes rebel numbers have fractionary parts \ No newline at end of file +-sometimes rebel numbers have fractionary parts + +Rules Assistant: +- find a way for the new intense drugs to fit in diff --git a/src/js/DefaultRules.tw b/src/js/DefaultRules.tw index 2e7113daedc..5c015572f84 100644 --- a/src/js/DefaultRules.tw +++ b/src/js/DefaultRules.tw @@ -265,10 +265,10 @@ window.DefaultRules = (function() { r += `<br>${slave.slaveName} has been automatically assigned to be confined in ${V.arcadeName}.`; break; case "serve in the master suite": - r += `<br>${slave.slaveName} has been automatically assigned to {V.masterSuiteName}.`; + r += `<br>${slave.slaveName} has been automatically assigned to ${V.masterSuiteName}.`; break; case "get treatment in the clinic": - r += `<br>${slave.slaveName} has been automatically assigned to get treatment in {V.clinicName}.`; + r += `<br>${slave.slaveName} has been automatically assigned to get treatment in ${V.clinicName}.`; break; case "rest in the spa": r += `<br>${slave.slaveName} has been automatically assigned to rest in ${V.spaName}.`; -- GitLab