Skip to content

Commit c46d177

Browse files
committed
Merge branch 'develop'
2 parents 5678b7b + d07dcf8 commit c46d177

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

RCLootCouncil.toc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## Author: Potdisc
22
## Interface: 120001, 120000
3-
## Notes: Interface for running a Loot Council v3.19.2
3+
## Notes: Interface for running a Loot Council v3.19.3
44
## Title: RCLootCouncil
5-
## Version: 3.19.2
5+
## Version: 3.19.3
66
## SavedVariables: RCLootCouncilDB, RCLootCouncilLootDB
77
## AllowLoadGameType: standard
88
## OptionalDeps: LibStub, CallbackHandler-1.0, Ace3, lib-st, LibWindow-1.1, LibDialog-1.0

Utils/Utils.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,11 @@ end
301301
---@param unit1 string | Player
302302
---@param unit2 string | Player
303303
function Utils:UnitIsUnit(unit1, unit2)
304-
if not unit1 or not unit2 then return false end
305304
if self:IsSecretValue(unit1, unit2) then
306305
addon.Log:W("Trying to compare secret values in Utils:UnitIsUnit()", tostring(unit1), tostring(unit2))
307306
return false
308307
end
308+
if not unit1 or not unit2 then return false end
309309
if unit1.name then unit1 = unit1.name end
310310
if unit2.name then unit2 = unit2.name end
311311
-- Remove realm names, if any

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 3.19.3
2+
3+
## Bugfixes
4+
5+
- *Another secret variable fix.*
6+
17
# 3.19.2
28

39
Fixed toc issue making v3.19.1 incompatible.

0 commit comments

Comments
 (0)