Skip to content
Snippets Groups Projects
Commit d698f5fe authored by lowercasedonkey's avatar lowercasedonkey
Browse files

fixes

parent 617113e1
No related branches found
No related tags found
1 merge request!8026Custom slave to js
...@@ -690,6 +690,8 @@ App.Markets["Custom Slave"] = function() { ...@@ -690,6 +690,8 @@ App.Markets["Custom Slave"] = function() {
for (const [value, text] of choices) { for (const [value, text] of choices) {
if (slave.smells === Number(value)) { if (slave.smells === Number(value)) {
return `${text}.`; return `${text}.`;
} else {
return `Normal Sense of smell.`;
} }
} }
} }
...@@ -712,6 +714,8 @@ App.Markets["Custom Slave"] = function() { ...@@ -712,6 +714,8 @@ App.Markets["Custom Slave"] = function() {
for (const [value, text] of choices) { for (const [value, text] of choices) {
if (slave.tastes === Number(value)) { if (slave.tastes === Number(value)) {
return `${text}.`; return `${text}.`;
} else {
return `Normal Sense of taste.`;
} }
} }
} }
......
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