diff --git a/javascripts/core/app/modal.js b/javascripts/core/app/modal.js index e893251a0..8951bf624 100644 --- a/javascripts/core/app/modal.js +++ b/javascripts/core/app/modal.js @@ -56,6 +56,7 @@ import GlyphSetSaveDeleteModal from "@/components/modals/GlyphSetSaveDeleteModal import RealityGlyphCreationModal from "@/components/modals/RealityGlyphCreationModal"; import EnslavedHintsModal from "@/components/modals/EnslavedHintsModal"; import SingularityMilestonesModal from "@/components/modals/SingularityMilestonesModal"; +import PelleEffectsModal from "@/components/modals/PelleEffectsModal"; export class Modal { @@ -167,6 +168,7 @@ Modal.automatorScriptTemplate = new Modal(AutomatorScriptTemplate); Modal.shop = new Modal(StdStoreModal); Modal.studyString = new Modal(StudyStringModal); Modal.singularityMilestones = new Modal(SingularityMilestonesModal); +Modal.pelleEffects = new Modal(PelleEffectsModal); Modal.sacrifice = new Modal(SacrificeModal); Modal.breakInfinity = new Modal(BreakInfinityModal); Modal.celestialQuote = new class extends Modal { diff --git a/src/components/modals/PelleEffectsModal.vue b/src/components/modals/PelleEffectsModal.vue index cb1a36782..dd3fe48c7 100644 --- a/src/components/modals/PelleEffectsModal.vue +++ b/src/components/modals/PelleEffectsModal.vue @@ -16,7 +16,6 @@ export default { "All infinity multipliers and infinity generation are disabled", "All eternity multipliers and eternity generation are disabled", "Black Hole is disabled", - "Charged Infinity Upgrades are disabled", "All \"Start with X currency\" rewards are disabled", "All pre-doomed Dilated Time multipliers are disabled except the 2x buyable", "All Tachyon Particle multipliers are disabled", @@ -34,6 +33,7 @@ export default { "Tickspeed Autobuyer is disabled until reacquired", "Time Theorem Autobuyer is disabled", "All Effarig effects are disabled", + "Charged Infinity Upgrades are disabled", "Continumm is disabled", "Singularity rewards are disabled", "Glyph Alchemy effects are disabled", @@ -78,13 +78,21 @@ export default { + + \ No newline at end of file diff --git a/src/components/tabs/celestial-pelle/PelleTab.vue b/src/components/tabs/celestial-pelle/PelleTab.vue index 2a58b9f34..1544527e2 100644 --- a/src/components/tabs/celestial-pelle/PelleTab.vue +++ b/src/components/tabs/celestial-pelle/PelleTab.vue @@ -1,13 +1,21 @@