Disable exponential upgrades

This commit is contained in:
thepaperpilot 2023-05-12 14:38:55 -05:00
parent f1b269e803
commit cf33c8d205

View file

@ -219,8 +219,8 @@ export function createPlane(
for (let j = 0; j < 4; j++) {
const upgradeTypeWeights = {
add: 1,
mult: i === 0 && j === 0 ? 0 : 1,
pow: i === 0 ? 0 : 0.5
mult: i === 0 && j === 0 ? 0 : 1
// pow: i === 0 ? 0 : 0.5
};
const upgradeType = pickRandom(upgradeTypeWeights, random);
const cost = nextCost.value;