Some fixes

* Scrollbar on hotkeys window
* Guild channel will appears on channel list but not yet working properly
This commit is contained in:
AndreFaramir
2012-04-24 00:19:01 -03:00
parent dcefeb134c
commit c903cc7ec4
3 changed files with 15 additions and 6 deletions

View File

@@ -286,7 +286,7 @@ end
function HotkeysManager.call(keyCombo)
if g_game.isOnline() then
local hotKey = hotkeyList[keyCombo]
if hotKey.itemId == nil and hotKey.value ~= '' then
if hotKey ~= nil and hotKey.itemId == nil and hotKey.value ~= '' then
if hotKey.autoSend then
g_game.talk(hotKey.value)
else