mirror of
				https://github.com/FaceDeer/dfcaverns.git
				synced 2025-11-04 10:05:29 +01:00 
			
		
		
		
	it actually runs! Crashes with out-of-memory error when you try to go below -64, but it's a start.
This commit is contained in:
		@@ -39,10 +39,11 @@ df_dependencies.texture_wood = select_required({default="default_wood.png", mcl_
 | 
			
		||||
df_dependencies.texture_mineral_coal = select_required({default="default_mineral_coal.png",	mcl_core="mcl_core_coal_ore.png"}) -- MCL's coal texture isn't transparent, but is only used with gas seeps and should work fine that way
 | 
			
		||||
df_dependencies.texture_glass_bottle = select_required({vessels="vessels_glass_bottle.png",	mcl_potions="mcl_potions_potion_bottle.png"})
 | 
			
		||||
 | 
			
		||||
df_dependencies.mods_required.mcl_vars = true
 | 
			
		||||
df_dependencies.mods_required.mcl_init = true
 | 
			
		||||
df_dependencies.mods_required.mcl_worlds = true
 | 
			
		||||
df_dependencies.mods_required.mcl_strongholds = true
 | 
			
		||||
if minetest.get_modpath("mcl_vars") then
 | 
			
		||||
if minetest.get_modpath("mcl_init") then
 | 
			
		||||
 | 
			
		||||
	local prefix = "dfcaverns_"
 | 
			
		||||
	-- NOTE: These defaults are from df_caverns' config. Update them if those change.
 | 
			
		||||
	
 | 
			
		||||
@@ -77,6 +78,8 @@ if minetest.get_modpath("mcl_vars") then
 | 
			
		||||
			return pos.y <= mcl_vars.mg_overworld_max and pos.y >= old_overworld_min
 | 
			
		||||
		end
 | 
			
		||||
	end
 | 
			
		||||
 | 
			
		||||
--	minetest.debug(dump(mcl_vars))
 | 
			
		||||
	
 | 
			
		||||
	dofile(minetest.get_modpath(minetest.get_current_modname()).."/ores.lua")
 | 
			
		||||
	
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
name = df_dependencies
 | 
			
		||||
description = A utility mod for df_caverns that gathers all dependencies on minetest_game in one place, to ease compatibility efforts with mineclone and other such games
 | 
			
		||||
depends =
 | 
			
		||||
optional_depends = beds, bucket, default, doors, farming, fireflies, mcl_beds, mcl_buckets, mcl_chests, mcl_copper, mcl_core, mcl_doors, mcl_farming, mcl_furnaces, mcl_lanterns, mcl_mobitems, mcl_ocean, mcl_potions, mcl_sounds, mcl_strongholds, mcl_torches, mcl_vars, mcl_wool, mcl_worlds, mclx_core, mesecons, moreblocks, stairs, vessels, wool
 | 
			
		||||
optional_depends = beds, bucket, default, doors, farming, fireflies, mcl_beds, mcl_buckets, mcl_chests, mcl_copper, mcl_core, mcl_doors, mcl_farming, mcl_furnaces, mcl_lanterns, mcl_mobitems, mcl_ocean, mcl_potions, mcl_sounds, mcl_strongholds, mcl_torches, mcl_init, mcl_wool, mcl_worlds, mclx_core, mesecons, moreblocks, stairs, vessels, wool
 | 
			
		||||
		Reference in New Issue
	
	Block a user