Files
Modernization-Tool/Payload/Fallback/Interact/Addon/Interact.lua
T
2026-08-27 13:08:13 +00:00

21 lines
503 B
Lua

BINDING_HEADER_INTERACT = 'Interact'
StaticPopupDialogs['INTERACT_WARNING'] = {
text = 'Failed to load |cffffd200Interact|cffffffff. Follow the installation instructions to ensure proper installation.',
button1 = 'Okay',
timeout = 0,
whileDead = true,
}
if not InteractNearest then
StaticPopup_Show('INTERACT_WARNING')
end
function Interact(autoloot)
if not InteractNearest then
StaticPopup_Show('INTERACT_WARNING')
return
end
InteractNearest(autoloot)
end