Skip to content
Snippets Groups Projects
Commit f65e7903 authored by FCGudder's avatar FCGudder
Browse files

Added the option to allow slaves to be generated with male first names...

Added the option to allow slaves to be generated with male first names (defaults to false/undefined)
parent 4e677193
No related branches found
No related tags found
1 merge request!2503Beginning of male names generation
......@@ -26246,7 +26246,11 @@ window.nationalityToName = function nationalityToName(slave) {
 
slave.birthName = generateName(slave.nationality, slave.race, male);
slave.birthSurname = generateSurname(slave.nationality, slave.race, male);
slave.slaveName = slave.birthName;
if(male && !V.allowMaleSlaveNames) {
slave.slaveName = generateName(slave.nationality, slave.race, false);
} else {
slave.slaveName = slave.birthName;
}
slave.slaveSurname = slave.birthSurname;
if (V.useFSNames === 1) {
if (V.arcologies[0].FSChattelReligionist > 20) {
......@@ -81,7 +81,11 @@ window.nationalityToName = function nationalityToName(slave) {
slave.birthName = generateName(slave.nationality, slave.race, male);
slave.birthSurname = generateSurname(slave.nationality, slave.race, male);
slave.slaveName = slave.birthName;
if(male && !V.allowMaleSlaveNames) {
slave.slaveName = generateName(slave.nationality, slave.race, false);
} else {
slave.slaveName = slave.birthName;
}
slave.slaveSurname = slave.birthSurname;
if (V.useFSNames === 1) {
if (V.arcologies[0].FSChattelReligionist > 20) {
......
......@@ -382,6 +382,14 @@ Experimental male pronouns are currently @@.red;DISABLED@@. [[Enable|Options][$d
<</if>>
<br>&nbsp;&nbsp;&nbsp;&nbsp;//Apply Backwards Compatibility after changing to update slave's pronouns. Not all scenes support male pronouns and this is not yet incorporated into the lore or mechanics.//
<br>
<<if $allowMaleSlaveNames>>
Male slave names are currently @@.cyan;ENABLED@@. [[Disable|Options][$allowMaleSlaveNames = false]]
<<else>>
Male slave names are currently @@.red;DISABLED@@. [[Enable|Options][$allowMaleSlaveNames = true]]
<</if>>
//This only affects slave generation and not your ability to name your slaves.//
<br><br>
''INTERSECTING MECHANICS''
<br>
......
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