🐛 MEDITATION: Mana Circulation cap perk has no observable effect without Void Meditation #165
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Bug
Max meditation multiplier from Mana Circulation perk (
meditationCapBonus) doesn't increase the visible cap — still shows max 1.5x in ManaDisplay.Root Cause
The Mana Circulation discipline's
mana-circulation-meditationperk insrc/lib/game/data/disciplines/base.ts:60-67addsmeditationCapBonuswhich correctly raises themaxMultiplierfrom 5.0 to 8.5. However:ManaStatsSection.tsx:122-126only shows the current multiplier with a cosmetic color threshold at 1.5x, but never displays the actual maximum.Fix Suggestions
Files
src/lib/game/data/disciplines/base.ts:60-67(perk definition)src/lib/game/utils/mana-utils.ts:133-167(getMeditationBonus)src/components/game/tabs/StatsTab/ManaStatsSection.tsx:122-126(display)src/lib/game/effects/discipline-effects.ts:60-62(cap routing)Fixed in commit
8cebea9. Added meditationCap display to ManaStatsSection UI so players can see their max meditation multiplier. Updated perk description to clarify it raises the Void Meditation ceiling.