mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-16 07:20:41 +01:00
fix dirt textures
add grassy shapes cut from default:dirt_with_grass
This commit is contained in:
parent
c068edec65
commit
83ec1b2476
|
@ -7,8 +7,14 @@ local S = technic_cnc.getter
|
||||||
-------
|
-------
|
||||||
technic_cnc.register_all("default:dirt",
|
technic_cnc.register_all("default:dirt",
|
||||||
{snappy=2,choppy=2,oddly_breakable_by_hand=3,not_in_creative_inventory=1},
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,not_in_creative_inventory=1},
|
||||||
{"default_grass.png", "default_dirt.png", "default_grass.png"},
|
{"default_dirt.png"},
|
||||||
S("Dirt"))
|
S("Dirt"))
|
||||||
|
-- (DIRT WITH) GRASS
|
||||||
|
--------------------
|
||||||
|
technic_cnc.register_all("default:dirt_with_grass",
|
||||||
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,not_in_creative_inventory=1},
|
||||||
|
{"default_grass.png"},
|
||||||
|
S("Grassy dirt"))
|
||||||
-- WOOD
|
-- WOOD
|
||||||
-------
|
-------
|
||||||
technic_cnc.register_all("default:wood",
|
technic_cnc.register_all("default:wood",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user