mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-15 06:50:41 +01:00
10 lines
923 B
Lua
10 lines
923 B
Lua
|
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"
|