mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2024-11-21 16:13:54 +00:00
Fix bug with estimateTime not showing "Never" when it should
This commit is contained in:
parent
7872cd1bc6
commit
600fa67baf
1 changed files with 1 additions and 1 deletions
|
@ -437,7 +437,7 @@ export function estimateTime(
|
|||
const currTarget = unref(processedTarget);
|
||||
if (Decimal.gte(resource.value, currTarget)) {
|
||||
return "Now";
|
||||
} else if (Decimal.lt(currRate, 0)) {
|
||||
} else if (Decimal.lte(currRate, 0)) {
|
||||
return "Never";
|
||||
}
|
||||
return formatTime(Decimal.sub(currTarget, resource.value).div(currRate));
|
||||
|
|
Loading…
Reference in a new issue