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

fix costMOd

parent 95648f6f
No related branches found
No related tags found
No related merge requests found
...@@ -204,7 +204,7 @@ App.Markets.neighbor = function(numArcology) { ...@@ -204,7 +204,7 @@ App.Markets.neighbor = function(numArcology) {
} else if (_opinion < -2) { } else if (_opinion < -2) {
r.push(`Your social misalignment with ${V.arcologies[numArcology].name} drives up the price.`); r.push(`Your social misalignment with ${V.arcologies[numArcology].name} drives up the price.`);
} }
costMod = (_opinion * 0.05); costMod = (1 - (_opinion * 0.05));
} }
el.append(r.join(" ")); el.append(r.join(" "));
......
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