Skip to content
Snippets Groups Projects
Commit bf5749e6 authored by x's avatar x
Browse files

Mirroring fixing pregType food costs

parent 49cdd800
No related branches found
No related tags found
1 merge request!2637SFOverhualCore-II
...@@ -2260,14 +2260,14 @@ window.getSlaveCost = function(s) { ...@@ -2260,14 +2260,14 @@ window.getSlaveCost = function(s) {
// TODO: Include them here anyway? // TODO: Include them here anyway?
} else { } else {
cost += foodCost * s.pregType * (s.pregControl === 'speed up' ? 3 : 1); cost += foodCost * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
if (s.pregType >= 10) { if (s.pregType >= 100) {
cost += foodCost * s.pregType * (s.pregControl === 'speed up' ? 3 : 1); 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 >= 50) { } else if (s.pregType >= 50) {
cost += foodCost * 3 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1); cost += foodCost * 3 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1);
} else if (s.pregType >= 100) { } else if (s.pregType >= 30) {
cost += foodCost * 5 * s.pregType * (s.pregControl === 'speed up' ? 3 : 1); 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