Fix Wretched Defiler missing skill types #8707
Open
+2
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Wretched Defilers do not work with many skill gems due to missing skill types
Fixes # .
Description of the problem being solved:
Wretched Defiler's skill doesn't work with gems like Controlled Destruction and Spell Echo for some reason, even though Spell Echo clearly works in game. I looked at the
spectre.lua
file and compared the skill to another spectre's skill that do work with those support gems (Forged Frostbearer), and found it's missing[SkillType.Damage] = true, [SkillType.Multicastable] = true,
. Added those toskillTypes
and it worked (see screenshots below)I'm not familiar with how the export works, I assume
#addSkillTypes Damage Multicastable
is all I need to fix this during the next export script run? I didn't run it either. Please advise.Steps taken to verify a working solution:
[SkillType.Damage] = true, [SkillType.Multicastable] = true,
toskillTypes
inData/skills/spectre.lua
Link to a build that showcases this PR:
Before screenshot:
After screenshot: