Skip to content

Commit c4452a7

Browse files
committed
fix: run onQueryTooltip MSU event when fetching nested tooltip
1 parent 2678cc1 commit c4452a7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mod_nested_tooltips/hooks/ui/screens/tooltip/tooltip_events.nut

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
{
66
try
77
{
8-
return _skill.getNestedTooltip();
8+
local ret = _skill.getNestedTooltip();
9+
_skill.getContainer().onQueryTooltip(_skill, ret); // Manually run MSU event
10+
return ret;
911
}
1012
catch (error)
1113
{

0 commit comments

Comments
 (0)