1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-11-10 12:30:17 +01:00

Fixed global variables in irc mod

This commit is contained in:
LeMagnesium 2015-01-24 18:58:13 +01:00
parent d8a923bf32
commit 25d7f6e339
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ package.path =
-- The build of Lua that Minetest comes with only looks for libraries under
-- /usr/local/share and /usr/local/lib but LuaSocket is often installed under
-- /usr/share and /usr/lib.
if not jit and package.config:sub(1, 1) == "/" then
if not rawget(_G,"jit") and package.config:sub(1, 1) == "/" then
package.path = package.path..
";/usr/share/lua/5.1/?.lua"..
";/usr/share/lua/5.1/?/init.lua"

View File

@ -185,7 +185,7 @@ function meta:think()
self.lastThought = socket.gettime()
end
local handlers = handlers
local handlers = rawget(_G,"handlers")
function meta:handle(msg)
local handler = irc.handlers[msg.command]