mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 09:39:21 +02:00
6 lines
310 B
Lua
6 lines
310 B
Lua
function UIMap:onMouseRelease(mousePosition, mouseButton)
|
|
local tile = self:getTile(mousePosition)
|
|
if tile and Game.processMouseAction(mousePosition, mouseButton, nil, tile:getTopLookThing(), tile:getTopUseThing(), tile:getTopCreature(), tile:getTopMultiUseThing()) then return true end
|
|
return false
|
|
end
|