diff --git a/src/components/tabs/infinity-dimensions/ClassicInfinityDimensionRow.vue b/src/components/tabs/infinity-dimensions/ClassicInfinityDimensionRow.vue index c0193efe1..0a7adf13b 100644 --- a/src/components/tabs/infinity-dimensions/ClassicInfinityDimensionRow.vue +++ b/src/components/tabs/infinity-dimensions/ClassicInfinityDimensionRow.vue @@ -73,7 +73,7 @@ export default { this.hasPrevTier; }, showCostTitle() { - return this.cost.exponent < 1e6; + return this.cost.exponent < 1e5; } }, watch: { diff --git a/src/components/tabs/infinity-dimensions/ModernInfinityDimensionRow.vue b/src/components/tabs/infinity-dimensions/ModernInfinityDimensionRow.vue index e49cf77c5..322cf4bf5 100644 --- a/src/components/tabs/infinity-dimensions/ModernInfinityDimensionRow.vue +++ b/src/components/tabs/infinity-dimensions/ModernInfinityDimensionRow.vue @@ -58,7 +58,7 @@ export default { return `Reach ${formatPostBreak(InfinityDimension(this.tier).amRequirement)} AM`; }, hasLongText() { - return this.costDisplay.length > 15; + return this.costDisplay.length > 20; }, capTooltip() { if (this.enslavedRunning) return `Nameless prevents the purchase of more than ${format(10)} Infinity Dimensions`; @@ -70,7 +70,7 @@ export default { this.hasPrevTier; }, showCostTitle() { - return this.cost.exponent < 1e6; + return this.cost.exponent < 1e5; } }, watch: { diff --git a/src/components/tabs/time-dimensions/ClassicTimeDimensionRow.vue b/src/components/tabs/time-dimensions/ClassicTimeDimensionRow.vue index 0e3d6191a..1a8eb4fc8 100644 --- a/src/components/tabs/time-dimensions/ClassicTimeDimensionRow.vue +++ b/src/components/tabs/time-dimensions/ClassicTimeDimensionRow.vue @@ -68,7 +68,7 @@ export default { return this.buttonContents.length > 20; }, showCostTitle() { - return this.cost.exponent < 1e6; + return this.cost.exponent < 1e5; }, timeEstimate() { if (!this.showTTCost || this.ttGen.eq(0)) return ""; diff --git a/src/components/tabs/time-dimensions/ModernTimeDimensionRow.vue b/src/components/tabs/time-dimensions/ModernTimeDimensionRow.vue index 834a43977..4c48c1bd3 100644 --- a/src/components/tabs/time-dimensions/ModernTimeDimensionRow.vue +++ b/src/components/tabs/time-dimensions/ModernTimeDimensionRow.vue @@ -67,10 +67,10 @@ export default { return this.isCapped ? "Capped" : `${this.showCostTitle ? "Cost: " : ""}${format(this.cost, 2)} EP`; }, hasLongText() { - return this.buttonContents.length > 15; + return this.buttonContents.length > 20; }, showCostTitle() { - return this.cost.exponent < 1e6; + return this.cost.exponent < 1e5; }, timeEstimate() { if (!this.showTTCost || this.ttGen.eq(0)) return "";