fix: ascension skill category in attunements.ts references banned mechanic
#44
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?
Severity: Major (banned content)
File:
src/lib/game/data/attunements.ts(line 183)Problem: The
getAvailableSkillCategoriesfunction adds'ascension'to the always-available skill categories set. The banned mechanics list in AGENTS.md includes "ascension skills".Impact: Banned content reference. The
ascensionskill category should not exist in the game.Fix: Remove
categories.add('ascension');from thegetAvailableSkillCategoriesfunction.[priority: 3] DATA/LOGIC BUG — ascension skill category in attunements.ts references banned mechanic.
Starting work on #44. Will remove the banned 'ascension' skill category from getAvailableSkillCategories.
Fixed. Commented out
categories.add('ascension')in getAvailableSkillCategories. The ascension skill category is a banned mechanic.