mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 00:21:34 +00:00
Don't softcap effects
This commit is contained in:
parent
f1797beb2f
commit
8f5980ac79
1 changed files with 1 additions and 5 deletions
|
@ -1466,13 +1466,9 @@ const layer = createLayer(id, () => {
|
|||
});
|
||||
|
||||
const classroomEffect = computed(() => {
|
||||
var eff = Decimal.add(classrooms.amount.value, 1)
|
||||
return Decimal.add(classrooms.amount.value, 1)
|
||||
.pow(0.9)
|
||||
.pow(paper.upgrades2.classroomUpgrade.bought.value ? 1.1 : 1);
|
||||
if(eff.gte(100)){
|
||||
eff = eff.sqrt().mul(10)
|
||||
}
|
||||
return eff
|
||||
});
|
||||
|
||||
const classrooms = createBuyable(() => ({
|
||||
|
|
Loading…
Reference in a new issue