Skip to content

Commit

Permalink
Stagger delay reduced
Browse files Browse the repository at this point in the history
  • Loading branch information
Slackluster committed Jun 15, 2024
1 parent 485fe28 commit 60fefd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1339,7 +1339,7 @@ function app.AddFilteredLoot(itemLink, itemID, itemTexture, playerName, itemType

-- Stagger show/update the window
app.Flag["lastUpdate"] = GetServerTime()
app.Stagger(2, false)
app.Stagger(1, false)
end

-- Remove item and update the window
Expand Down Expand Up @@ -1432,7 +1432,7 @@ function event:CHAT_MSG_LOOT(text, playerName, languageName, channelName, player

-- Stagger show/update the window
app.Flag["lastUpdate"] = GetServerTime()
app.Stagger(2, true)
app.Stagger(1, true)
elseif C_Item.IsEquippableItem(itemLink) == true then
-- Add to filtered loot and update the window
app.AddFilteredLoot(itemLink, itemID, itemTexture, playerName, itemType, "Unusable transmog")
Expand Down Expand Up @@ -1514,7 +1514,7 @@ function event:CHAT_MSG_ADDON(prefix, text, channel, sender, target, zoneChannel

-- Stagger show/update the window
app.Flag["lastUpdate"] = GetServerTime()
app.Stagger(2, false)
app.Stagger(1, false)
end

-- Version
Expand Down

0 comments on commit 60fefd7

Please sign in to comment.