Update todo, fix minor error

This commit is contained in:
Eduardo Bart
2012-07-31 02:38:22 -03:00
parent 90312965bc
commit 6ef44d462d
2 changed files with 10 additions and 10 deletions

View File

@@ -562,13 +562,15 @@ end
function onGameStart()
-- open last channels
local lastChannelsOpen = g_settings.getNode('lastChannelsOpen')
local savedChannels = lastChannelsOpen[g_game.getLocalPlayer():getName()]
if savedChannels then
for channelName, channelId in pairs(savedChannels) do
channelId = tonumber(channelId)
if channelId ~= 0 then
if not table.find(channels, channelId) then
g_game.joinChannel(channelId)
if lastChannelsOpen then
local savedChannels = lastChannelsOpen[g_game.getLocalPlayer():getName()]
if savedChannels then
for channelName, channelId in pairs(savedChannels) do
channelId = tonumber(channelId)
if channelId ~= 0 then
if not table.find(channels, channelId) then
g_game.joinChannel(channelId)
end
end
end
end