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

correction

parent 8c70cc50
No related branches found
No related tags found
1 merge request!2566Pregmod v1028-21
......@@ -2240,14 +2240,14 @@ window.getSlaveCost = function(s) {
// TODO: Include them here anyway?
} else {
cost += foodCost * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
if (s.pregType >= 10) {
cost += foodCost * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
} else if (s.pregType >= 30) {
cost += foodCost * 2 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
if (s.pregType >= 100) {
cost += foodCost * 5 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
} else if (s.pregType >= 50) {
cost += foodCost * 3 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
} else if (s.pregType >= 100) {
cost += foodCost * 5 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
} else if (s.pregType >= 30) {
cost += foodCost * 2 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
} else if (s.pregType >= 10) {
cost += foodCost * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
}
}
}
......@@ -449,14 +449,14 @@ window.getSlaveCost = function(s) {
// TODO: Include them here anyway?
} else {
cost += foodCost * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
if (s.pregType >= 10) {
cost += foodCost * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
} else if (s.pregType >= 30) {
cost += foodCost * 2 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
if (s.pregType >= 100) {
cost += foodCost * 5 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
} else if (s.pregType >= 50) {
cost += foodCost * 3 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
} else if (s.pregType >= 100) {
cost += foodCost * 5 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
} else if (s.pregType >= 30) {
cost += foodCost * 2 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
} else if (s.pregType >= 10) {
cost += foodCost * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
}
}
}
......
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