Fix market error when logging out, added 910 protocol support.

master
BeniS 12 years ago
parent bdbce01c97
commit 621b1402c5

@ -811,11 +811,12 @@ end
function Market.close(notify) function Market.close(notify)
if notify == nil then notify = true end if notify == nil then notify = true end
marketWindow:hide() if not marketWindow:isHidden() then
marketWindow:unlock() marketWindow:hide()
Market.clearSelectedItem() marketWindow:unlock()
if notify then if notify then
MarketProtocol.sendMarketLeave() MarketProtocol.sendMarketLeave()
end
end end
end end

@ -48,8 +48,8 @@ end
function g_game.getSupportedProtocols() function g_game.getSupportedProtocols()
return { return {
810, 853, 854, 860, 861, 862, 870, 940, 810, 853, 854, 860, 861, 862, 870,
944, 953, 954, 960, 961 910, 940, 944, 953, 954, 960, 961
} }
end end

Loading…
Cancel
Save