mirror of
https://github.com/ShadowNinja/LuaIRC.git
synced 2025-07-06 01:50:22 +02:00
Fixed access parsing
This commit is contained in:
3
init.lua
3
init.lua
@ -177,7 +177,8 @@ handlers["353"] = function(o, prefix, me, chanType, channel, names)
|
||||
|
||||
local users = o.channels[channel].users
|
||||
for nick in names:gmatch("(%S+)") do
|
||||
users[nick] = {}
|
||||
local access, name = parseNick(nick)
|
||||
users[name] = {type = access}
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user