diff options
author | dabascht <dabascht@gmail.com> | 2012-01-09 19:44:05 +0100 |
---|---|---|
committer | dabascht <dabascht@gmail.com> | 2012-01-09 19:44:05 +0100 |
commit | f82fb910646d430ee7c30e1a016899b3b3cee78b (patch) | |
tree | 0dd4fafa57aa76bb7c97493d664f9fa7ed4a8a39 | |
parent | 22070fefd1bcc665c2f2581e082a332636015ce7 (diff) | |
download | mesecons-f82fb910646d430ee7c30e1a016899b3b3cee78b.tar mesecons-f82fb910646d430ee7c30e1a016899b3b3cee78b.tar.gz mesecons-f82fb910646d430ee7c30e1a016899b3b3cee78b.tar.bz2 mesecons-f82fb910646d430ee7c30e1a016899b3b3cee78b.tar.xz mesecons-f82fb910646d430ee7c30e1a016899b3b3cee78b.zip |
removed dump :( some people had problems with that function
-rw-r--r-- | jeija/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jeija/init.lua b/jeija/init.lua index 2b156ad..2438883 100644 --- a/jeija/init.lua +++ b/jeija/init.lua @@ -67,7 +67,7 @@ BLINKY_PLANT_INTERVAL=3 -- PUBLIC VARIABLES mesecon={} -- contains all functions and all global variables -mesecon.modpath = dump(minetest.get_modpath("jeija")) +mesecon.modpath = minetest.get_modpath("jeija") mesecon.actions_on={} -- Saves registered function callbacks for mesecon on mesecon.actions_off={} -- Saves registered function callbacks for mesecon off mesecon.pwr_srcs={} -- this is public for now @@ -1146,7 +1146,7 @@ dofile(mesecon.modpath.."/wireless.lua") dofile(mesecon.modpath.."/lightstone.lua") --TEMPEREST's STUFF if ENABLE_TEMPEREST==1 then - dofile(mesecon.modpath.."temperest.lua") + dofile(mesecon.modpath.."/temperest.lua") end --INIT |