diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2016-08-14 04:52:46 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2016-08-14 04:52:46 -0400 |
commit | 3f738369862a2f187ea3a53cdd3e8448df19a904 (patch) | |
tree | 30a8c93bd2d82af69dc9308529c33e36ebc0edfc /boost_cart | |
parent | 92f49e3096dc37b9b802994d287c47dc7f583c24 (diff) | |
download | dreambuilder_modpack-3f738369862a2f187ea3a53cdd3e8448df19a904.tar dreambuilder_modpack-3f738369862a2f187ea3a53cdd3e8448df19a904.tar.gz dreambuilder_modpack-3f738369862a2f187ea3a53cdd3e8448df19a904.tar.bz2 dreambuilder_modpack-3f738369862a2f187ea3a53cdd3e8448df19a904.tar.xz dreambuilder_modpack-3f738369862a2f187ea3a53cdd3e8448df19a904.zip |
update unified inventory and boost_carts
Diffstat (limited to 'boost_cart')
-rw-r--r-- | boost_cart/init.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/boost_cart/init.lua b/boost_cart/init.lua index 2298516..42d3533 100644 --- a/boost_cart/init.lua +++ b/boost_cart/init.lua @@ -24,7 +24,8 @@ end dofile(boost_cart.modpath.."/functions.lua") dofile(boost_cart.modpath.."/rails.lua") -if minetest.global_exists(mesecon) then +local HAVE_MESECONS_ENABLED = minetest.global_exists("mesecon") +if HAVE_MESECONS_ENABLED then dofile(boost_cart.modpath.."/detector.lua") end @@ -279,7 +280,7 @@ function boost_cart.cart:on_step(dtime) new_acc = vector.multiply(dir, acc) end - if mesecon then + if HAVE_MESECONS_ENABLED then boost_cart:signal_detector_rail(vector.round(pos)) end |