1
0
mirror of https://github.com/ShadowNinja/LuaIRC.git synced 2025-01-09 17:40:29 +01:00

Merge pull request #19 from ncopa/master

Fixed bug in trackUsers where pairs was missing
This commit is contained in:
JakobOvrum 2014-01-21 22:53:10 -08:00
commit c046a0e009

View File

@ -1,6 +1,7 @@
local table = table local table = table
local assert = assert local assert = assert
local select = select local select = select
local pairs = pairs
module "irc" module "irc"