Skip to content

Commit

Permalink
Merge branch 'release/2.18.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
evil-morfar committed Feb 28, 2020
2 parents dd928bd + 4a44523 commit c6e62a4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions RCLootCouncil.toc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Author: Potdisc
## Interface: 80300
## Notes: Interface for running a Loot Council v2.18.0
## Notes: Interface for running a Loot Council v2.18.1
## Title: RCLootCouncil
## Version: 2.18.0
## Version: 2.18.1
## SavedVariables: RCLootCouncilDB, RCLootCouncilLootDB
## OptionalDeps: LibStub, CallbackHandler-1.0, Ace3, lib-st, LibWindow-1.1, LibDialog-1.0

Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ When enabled, it functions exactly as it did before.

## Bugfixes
* *Candidate info no longer has the potential to wait a long time before being sync, i.e. guild rank not showing up in the voting frame.*
* *2.18.1: Previous version would error out when awarding during tests.*


#### Dev
Expand Down
2 changes: 1 addition & 1 deletion ml_core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ RCLootCouncilML.awardStrings = {
["&o"] = function(...)
local session = select(5, ...)
local owner = select(6, ...) or RCLootCouncilML.lootTable[session] and RCLootCouncilML.lootTable[session].owner
return addon.Ambiguate(owner) or _G.UNKNOWN end,
return owner and addon.Ambiguate(owner) or _G.UNKNOWN end,
["&m"] = function(...) return addon:GetActiveModule("votingframe"):GetCandidateData(select(5,...), select(1,...), "note") or "<none>" end,
}

Expand Down

0 comments on commit c6e62a4

Please sign in to comment.