Added technic_compat mod to keep compatability functions accessable to the whole modpack

This commit is contained in:
James David Clarke
2023-12-28 09:54:09 +00:00
parent 9a231387a3
commit 588d36ba09
57 changed files with 460 additions and 440 deletions

View File

@ -0,0 +1,10 @@
local dirt_texture = technic_compat.mcl and "default_dirt.png" or "default_dirt.png"
local grass_texture = technic_compat.mcl and "mcl_core_palette_grass.png" or "default_grass.png"
local wood_texture = technic_compat.mcl and "default_wood.png" or "default_wood.png"
local stone_texture = technic_compat.mcl and "default_stone.png" or "default_stone.png"
local cobble_texture = technic_compat.mcl and "default_cobble.png" or "default_cobble.png"
local brick_texture = technic_compat.mcl and "default_brick.png" or "default_brick.png"
local sandstone_texture = technic_compat.mcl and "mcl_core_sandstone_top.png" or "default_sandstone.png"
local leaves_texture = technic_compat.mcl and "default_leaves.png" or "default_leaves.png"
local tree_texture = technic_compat.mcl and "default_tree.png" or "default_tree.png"
local bronzeblock_texture = technic_compat.mcl and "mcl_core_bronze_block.png" or "default_bronze_block.png"