mirror of
https://github.com/ShadowNinja/LuaIRC.git
synced 2025-01-10 10:00:28 +01:00
Fixed access parsing
This commit is contained in:
parent
b104df15cc
commit
a8211a7678
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
|
||||
|
Loading…
Reference in New Issue
Block a user