Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit 81763a4

Browse files
Merge pull request #13 from Peechey/fix/explosive-impact-nil
Fix Explosive Impact nil error
2 parents 4520ac8 + 853ae34 commit 81763a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Classes/SkillsTab.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ function SkillsTabClass:ProcessSocketGroup(socketGroup)
10371037
else
10381038
gemInstance.grantedEffect = data.skills[gemInstance.skillId]
10391039
end
1040-
if gemInstance.triggered then
1040+
if gemInstance.triggered and gemInstance.grantedEffect then
10411041
if gemInstance.grantedEffect.levels[gemInstance.level] then
10421042
gemInstance.grantedEffect.levels[gemInstance.level].cost = {}
10431043
end

0 commit comments

Comments
 (0)