Commit 18bbef59 authored by Ivaria's avatar Ivaria
Browse files

Fixed interacting with a frame after battle res when using Clique compat mode

parent b8e442d0
......@@ -297,8 +297,8 @@ function VuhDoActionPreClick(aButton, aMouseButton)
tKey = VUHDO_SPELL_ASSIGNMENTS[tModi .. SecureButton_GetButtonSuffix(aMouseButton)];
-- allow VuhDo menu command to be bound even when using Clique compat mode
if VUHDO_CONFIG["IS_CLIQUE_COMPAT_MODE"] and tKey and
(strlower(tKey[3]) ~= "menu" or not VUHDO_CONFIG["IS_CLIQUE_PASSTHROUGH"]) then
if VUHDO_CONFIG["IS_CLIQUE_COMPAT_MODE"] and
(strlower(tKey and tKey[3] or "") ~= "menu" or not VUHDO_CONFIG["IS_CLIQUE_PASSTHROUGH"]) then
return;
end
......
......@@ -19,6 +19,7 @@ Bugfixes:
-- Fixed Cluster Builder calling methods on forbidden frames
-- Fixed improper usage of API to check for Druid talent Rampant Growth
-- Fixed AOE cluster advice for spells which target randomly (thanks BlueRajasmyk)
-- Fixed interacting with a frame after battle res when using Clique compat mode
Improvements:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment