Skip to content

Commit

Permalink
Merge branch 'release/3.14.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
evil-morfar committed Dec 18, 2024
2 parents 2861772 + 52a13b8 commit df83d44
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ describe("#VotingFrame #ReannounceOrRequestRoll", function()
for ses, data in ipairs(VotingFrame:GetLootTable()) do
for name, v in pairs(data.candidates) do
-- We might have autopassed
if name == addon.player.name and v.roll == "-" then
assert.equal("-", v.roll)
if name == addon.player.name and v.roll == "?" then
assert.equal("?", v.roll)
else
assert.Nil(v.roll)
end
Expand Down
6 changes: 3 additions & 3 deletions RCLootCouncil.toc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Author: Potdisc
## Interface: 110005
## Notes: Interface for running a Loot Council v3.14.4
## Interface: 110007
## Notes: Interface for running a Loot Council v3.14.5
## Title: RCLootCouncil
## Version: 3.14.4
## Version: 3.14.5
## SavedVariables: RCLootCouncilDB, RCLootCouncilLootDB
## OptionalDeps: LibStub, CallbackHandler-1.0, Ace3, lib-st, LibWindow-1.1, LibDialog-1.0
## X-Curse-Project-ID: 39928
Expand Down
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 3.14.5

## Changes

Updated for patch 11.0.7.

### Request rolls

Asking a candidate to roll will now change their roll to "?" when they have received the request.

# 3.14.4

## Changes
Expand Down
2 changes: 1 addition & 1 deletion core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,7 @@ function RCLootCouncil:SendLootAck(table, skip)
toSend.gear2[session] = g2 and ItemUtils:GetItemStringClean(g2) or nil
toSend.diff[session] = diff
toSend.response[session] = v.autopass
toSend.roll[session] = v.isRoll and "-" or nil
toSend.roll[session] = (v.isRoll and v.autopass and "-") or v.isRoll and "?" or nil
end
end
if not next(toSend.roll) then toSend.roll = nil end
Expand Down

0 comments on commit df83d44

Please sign in to comment.