mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 00:21:34 +00:00
fixes type error
This commit is contained in:
parent
aec06a6b26
commit
957de9c298
1 changed files with 1 additions and 1 deletions
|
@ -1027,7 +1027,7 @@ const layer = createLayer(id, () => {
|
||||||
},
|
},
|
||||||
canClick: () => Decimal.eq(focusCooldown.value, 0),
|
canClick: () => Decimal.eq(focusCooldown.value, 0),
|
||||||
onClick() {
|
onClick() {
|
||||||
focusCooldown.value = cooldown.value;
|
focusCooldown.value = Decimal.fromValue(cooldown.value).toNumber();
|
||||||
focusTime.value = 10;
|
focusTime.value = 10;
|
||||||
rerollFocusTargets(12, maximumElves.value);
|
rerollFocusTargets(12, maximumElves.value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue