Bug: Enchanter disciplines use wrong mana types (should be Transference) #149
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 Description
Enchanter disciplines should all use Transference Mana since enchanters use transference mana to imbue items with enchantments. Instead, 9 of them use various elemental mana types.
Disciplines to Fix
enchanter.ts:36mana-channelinglightningtransferenceenchanter.ts:54study-basic-weapon-enchantmentsfiretransferenceenchanter.ts:87study-advanced-weapon-enchantmentsdarktransferenceenchanter-utility.ts:13study-utility-enchantmentslighttransferenceenchanter-utility.ts:41study-mana-enchantmentswatertransferenceenchanter-spells.ts:13study-basic-spell-enchantmentsairtransferenceenchanter-spells.ts:73study-intermediate-spell-enchantmentsearthtransferenceenchanter-spells.ts:127study-advanced-spell-enchantmentsdarktransferenceenchanter-special.ts:13study-special-enchantmentsdeathtransferenceNote:
enchant-craftingalready correctly usestransference✓Fix Required
Change the
manaTypefield from the current elemental type to'transference'for each of the 9 disciplines listed above.Affected Files
src/lib/game/data/disciplines/enchanter.ts(3 disciplines)src/lib/game/data/disciplines/enchanter-utility.ts(2 disciplines)src/lib/game/data/disciplines/enchanter-spells.ts(3 disciplines)src/lib/game/data/disciplines/enchanter-special.ts(1 discipline)Closed — fixed in commit
964619b. All 9 enchanter disciplines now use transference mana.