mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-02 00:00:37 +02:00
Fix cans
This commit is contained in:
@ -12,5 +12,6 @@ local mcl_path = modpath .. "/mcl/"
|
||||
dofile(mcl_path .. "sounds.lua")
|
||||
dofile(mcl_path .. "textures.lua")
|
||||
dofile(mcl_path .. "miscellaneous.lua")
|
||||
dofile(mcl_path .. "fluids.lua")
|
||||
dofile(mcl_path .. "crafting.lua")
|
||||
dofile(mcl_path .. "craftguide.lua")
|
||||
|
6
technic_compat/mcl/fluids.lua
Normal file
6
technic_compat/mcl/fluids.lua
Normal file
@ -0,0 +1,6 @@
|
||||
technic_compat.water_source_fluid = technic_compat.mcl and "mcl_core:water_source" or "default:water_source"
|
||||
technic_compat.water_flowing_fluid = technic_compat.mcl and "mcl_core:water_flowing" or "default:water_flowing"
|
||||
technic_compat.river_water_source_fluid = technic_compat.mcl and "mclx_core:river_water_source" or "default:river_water_source"
|
||||
technic_compat.river_water_flowing_fluid = technic_compat.mcl and "mclx_core:river_water_flowing" or "default:river_water_flowing"
|
||||
technic_compat.lava_source_fluid = technic_compat.mcl and "mcl_core:lava_source" or "default:lava_source"
|
||||
technic_compat.lava_flowing_fluid = technic_compat.mcl and "mcl_core:lava_flowing" or "default:lava_flowing"
|
Reference in New Issue
Block a user