Skip to content
Snippets Groups Projects
Commit 62b6ab99 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'vas-rajs' into 'pregmod-master'

fix missing $ in template strings

See merge request pregmodfan/fc-pregmod!2178
parents 447c182b 55545daa
No related branches found
No related tags found
No related merge requests found
...@@ -9,4 +9,7 @@ Events: ...@@ -9,4 +9,7 @@ Events:
Bugs: Bugs:
-sometimes troop counts breaks -sometimes troop counts breaks
-sometimes rebel numbers have fractionary parts -sometimes rebel numbers have fractionary parts
\ No newline at end of file
Rules Assistant:
- find a way for the new intense drugs to fit in
...@@ -265,10 +265,10 @@ window.DefaultRules = (function() { ...@@ -265,10 +265,10 @@ window.DefaultRules = (function() {
r += `<br>${slave.slaveName} has been automatically assigned to be confined in ${V.arcadeName}.`; r += `<br>${slave.slaveName} has been automatically assigned to be confined in ${V.arcadeName}.`;
break; break;
case "serve in the master suite": 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; break;
case "get treatment in the clinic": 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; break;
case "rest in the spa": case "rest in the spa":
r += `<br>${slave.slaveName} has been automatically assigned to rest in ${V.spaName}.`; r += `<br>${slave.slaveName} has been automatically assigned to rest in ${V.spaName}.`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment