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

fix

parent 57db445f
No related branches found
No related tags found
4 merge requests!843Delete Please.,!833Pregmod master,!758Pregmod master,!667Pregmod v1019-16
...@@ -360,7 +360,7 @@ window.getSlaveCost = function(s) { ...@@ -360,7 +360,7 @@ window.getSlaveCost = function(s) {
cost += 100; cost += 100;
break; break;
case 'food': case 'food':
costs += (foodCost * 4); cost += (foodCost * 4);
break; break;
case 'curative': case 'aphrodisiac': case 'tightener': case 'curative': case 'aphrodisiac': case 'tightener':
cost += (100 + (drugsCost * 2)); cost += (100 + (drugsCost * 2));
...@@ -372,7 +372,7 @@ window.getSlaveCost = function(s) { ...@@ -372,7 +372,7 @@ window.getSlaveCost = function(s) {
cost += 50; cost += 50;
break; break;
case 'food': case 'food':
costs += (foodCost * 2); cost += (foodCost * 2);
break; break;
case 'curative': case 'aphrodisiac': case 'tightener': case 'curative': case 'aphrodisiac': case 'tightener':
cost += (50 + (drugsCost * 2)); cost += (50 + (drugsCost * 2));
...@@ -384,7 +384,7 @@ window.getSlaveCost = function(s) { ...@@ -384,7 +384,7 @@ window.getSlaveCost = function(s) {
cost += 25; cost += 25;
break; break;
case 'food': case 'food':
costs += (foodCost); cost += (foodCost);
break; break;
case 'curative': case 'aphrodisiac': case 'tightener': case 'curative': case 'aphrodisiac': case 'tightener':
cost += (25 + (drugsCost * 2)); cost += (25 + (drugsCost * 2));
......
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