Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Firestorm of Pelting skill effect duration #8493

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Data/Skills/act_int.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5850,7 +5850,6 @@ skills["FirestormAltX"] = {
baseFlags = {
spell = true,
area = true,
duration = true,
},
qualityStats = {
Default = {
Expand Down Expand Up @@ -5921,6 +5920,7 @@ skills["FirestormAltY"] = {
baseFlags = {
spell = true,
area = true,
duration = true,
},
baseMods = {
skill("radiusSecondary", 22),
Expand Down
4 changes: 2 additions & 2 deletions src/Export/Skills/act_int.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1137,11 +1137,11 @@ local skills, mod, flag, skill = ...
#mods

#skill FirestormAltX
#flags spell area duration
#flags spell area
#mods

#skill FirestormAltY
#flags spell area
#flags spell area duration
#baseMod skill("radiusSecondary", 22)
#baseMod skill("radiusLabel", "Fire projectile:")
#baseMod skill("radiusSecondaryLabel", "Target area:")
Expand Down