init.lua 410 B

123456789
  1. dofile(minetest.get_modpath(minetest.get_current_modname()).."/falling.lua")
  2. dofile(minetest.get_modpath(minetest.get_current_modname()).."/fullinventory.lua")
  3. if minetest.settings:get_bool("physics_liquid_falling") then
  4. dofile(minetest.get_modpath(minetest.get_current_modname()).."/liquids_falling.lua")
  5. else
  6. dofile(minetest.get_modpath(minetest.get_current_modname()).."/liquids_static.lua")
  7. end