mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2025-02-16 09:41:40 +00:00
Disable exponential upgrades
This commit is contained in:
parent
f1b269e803
commit
cf33c8d205
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue