Files
MetaHunt/api/pets-service-stablescan.lua
DuvelCorp 27d37564ce v1.1.0
2026-03-09 13:41:30 +01:00

11 lines
286 B
Lua

if not MTH_ST_StableScanService then
MTH_ST_StableScanService = {}
end
function MTH_ST_StableScanService:HandleEvent(evt, _eventArg1, _eventArg2)
if type(MTH_ST_HandleStableUiEvent) ~= "function" then
return false
end
return MTH_ST_HandleStableUiEvent(evt) and true or false
end