Change load order so that LuaIRC loads first

master
ShadowNinja 2014-06-06 11:06:18 -04:00
parent 8aa442e87f
commit e92eec3987
1 changed files with 3 additions and 3 deletions

View File

@ -4,11 +4,11 @@
local modpath = minetest.get_modpath(minetest.get_current_modname())
package.path =
package.path..";"
-- To find LuaIRC's init.lua
..modpath.."/?/init.lua;"
modpath.."/?/init.lua;"
-- For LuaIRC to find its files
..modpath.."/?.lua"
..modpath.."/?.lua;"
..package.path
irc = {
version = "0.2.0",