mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2024-11-22 20:22:51 +00:00
Address PR feedback (spec/holiday-bugfixes)
This commit is contained in:
parent
c1acb9ac9e
commit
82697fa8e2
@ -51,10 +51,10 @@ export const Effarig = {
|
||||
}
|
||||
},
|
||||
get glyphEffectAmount() {
|
||||
const genEffectBitmask = Glyphs.activeList
|
||||
const genEffectBitmask = Glyphs.activeWithoutCompanion
|
||||
.filter(g => generatedTypes.includes(g.type))
|
||||
.reduce((prev, curr) => prev | curr.effects, 0);
|
||||
const nongenEffectBitmask = Glyphs.activeList
|
||||
const nongenEffectBitmask = Glyphs.activeWithoutCompanion
|
||||
.filter(g => !generatedTypes.includes(g.type))
|
||||
.reduce((prev, curr) => prev | curr.effects, 0);
|
||||
return countValuesFromBitmask(genEffectBitmask) + countValuesFromBitmask(nongenEffectBitmask);
|
||||
|
@ -172,9 +172,6 @@ export default {
|
||||
Cost: {{ format(unlockCost) }} IP
|
||||
</PrimaryButton>
|
||||
<template v-else>
|
||||
<div v-if="isInEC8">
|
||||
You have {{ quantifyInt("purchase", ec8Purchases) }} left.
|
||||
</div>
|
||||
<div v-if="isDoomed">
|
||||
Your Replicanti cap has been removed due to the second {{ scrambledText }} milestone.
|
||||
</div>
|
||||
@ -192,6 +189,9 @@ export default {
|
||||
<span v-html="boostText" />
|
||||
</p>
|
||||
<br>
|
||||
<div v-if="isInEC8">
|
||||
You have {{ quantifyInt("purchase", ec8Purchases) }} left within Eternity Challenge 8.
|
||||
</div>
|
||||
<div class="l-replicanti-upgrade-row">
|
||||
<ReplicantiUpgradeButton :setup="replicantiChanceSetup" />
|
||||
<ReplicantiUpgradeButton :setup="replicantiIntervalSetup" />
|
||||
|
Loading…
Reference in New Issue
Block a user