If you build an Outpost instead of a lair for mummies it will produce preservatives. Pay more attention to what the descriptions tell you.Why is it that, when finding the spot for the Mummy Grave, the description says it's a place where preservatives can be gathered, but once it's actually built, the occupants generate stones?
...Oh. My apologies. (Let's not get snappy, now.)If you build an Outpost instead of a lair for mummies it will produce preservatives. Pay more attention to what the descriptions tell you.
I'm getting this with my centaurs, so I assume it's a problem with ANY girl with a double name.When using the girl editor on one of Nambi's children with a double name, this error always occurs
View attachment 2529686
Any fix for this? If not it's fine, it's honestly a minor annoyance at most.
The problem is spaces. If the name is without spaces, then no error will be thrown. I tested it myself and noticed this error and its cause.When using the girl editor on one of Nambi's children with a double name, this error always occurs
View attachment 2529686
Any fix for this? If not it's fine, it's honestly a minor annoyance at most.
box += '<<option ' + $v.slaves[i].slaveName + ' ' + i + '>>';
and replace it with box += '<<option "' + $v.slaves[i].slaveName + '" ' + i + '>>';
. In version 3.2.1, it should be line 17737 in the html file.Can you elaborate (what will I achieve with this line and what will appear)?) I am inexperienced in writing code on this engine. And it doesn't look like much to add a whole unique girl of her own.EternalSession12 Cake3Purple6Cheese948 Rolandiy
Search forbox += '<<option ' + $v.slaves[i].slaveName + ' ' + i + '>>';
and replace it withbox += '<<option "' + $v.slaves[i].slaveName + '" ' + i + '>>';
. In version 3.2.1, it should be line 17737 in the html file.
Aha! I got it =). Thank you! Now I don't have to use a forward slash (_/) instead of a space.It fixes the error you get when viewing a girl with a name that contains a space (eg "Aha Njoku") in the girl editor.
It works! Many thanks.EternalSession12 Cake3Purple6Cheese948 Rolandiy
Search forbox += '<<option ' + $v.slaves[i].slaveName + ' ' + i + '>>';
and replace it withbox += '<<option "' + $v.slaves[i].slaveName + '" ' + i + '>>';
. In version 3.2.1, it should be line 17737 in the html file.