Skip to content

Commit d0b629f

Browse files
committed
Fix remix detection incorrectly flagging non-remix characters
1 parent 8f7c280 commit d0b629f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

KeystoneUtil.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ KSUtil = Util;
66

77
local BNSendGameData = C_BattleNet and C_BattleNet.SendGameData or BNSendGameData
88

9-
local IS_LEMIX = C_TimerunningUI.GetActiveTimerunningSeasonID() == 2;
9+
local LEMIX_SEASON_ID = 2;
1010

1111
local CTL = ChatThrottleLib;
1212

@@ -42,7 +42,7 @@ function Util:GetOwnedKeystone()
4242
end
4343

4444
function Util:GetKeystoneLink()
45-
if not IS_LEMIX then
45+
if PlayerGetTimerunningSeasonID() ~= LEMIX_SEASON_ID then
4646
local mapID, level = self:GetOwnedKeystone();
4747
if not mapID or not level then
4848
return nil;

0 commit comments

Comments
 (0)