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

This commit is contained in:
BeniS 2012-08-23 14:59:42 +12:00
parent bdbce01c97
commit 621b1402c5
2 changed files with 8 additions and 7 deletions

View File

@ -811,13 +811,14 @@ end
function Market.close(notify)
if notify == nil then notify = true end
if not marketWindow:isHidden() then
marketWindow:hide()
marketWindow:unlock()
Market.clearSelectedItem()
if notify then
MarketProtocol.sendMarketLeave()
end
end
end
function Market.incrementAmount()
amountEdit:setValue(amountEdit:getValue() + 1)

View File

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