Skip to content

Commit

Permalink
Update gcmelee.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
yzyii authored May 29, 2024
1 parent 4c7d4c1 commit 054ee78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/gcmelee.lua
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function gcmelee.DoDefault()
end

if (player.MainJob ~= 'RNG') then
if (fenrirs_earring and (environment.Time >= 6 or environment.Time < 18)) then
if (fenrirs_earring and (environment.Time >= 6 and environment.Time < 18)) then
gFunc.Equip(fenrirs_earring_slot, 'Fenrir\'s Earring')
end
end
Expand All @@ -105,7 +105,7 @@ function gcmelee.DoFenrirsEarring()

if (isDPS) then
if (player.MainJob ~= 'RNG') then
if (fenrirs_earring and (environment.Time >= 6 or environment.Time < 18)) then
if (fenrirs_earring and (environment.Time >= 6 and environment.Time < 18)) then
gFunc.Equip(fenrirs_earring_slot, 'Fenrir\'s Earring')
end
end
Expand Down

0 comments on commit 054ee78

Please sign in to comment.