We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92db854 commit 1a2787bCopy full SHA for 1a2787b
mods/cl_default/init.lua
@@ -559,8 +559,10 @@ minetest.register_node(":default:dirt_with_grass", {
559
560
minetest.register_node(":default:dirt_with_grass_footsteps", {
561
description = S("Dirt With Grass and Footsteps"),
562
- tiles = { "grass_footsteps.png", "mud.png", "grass_side.png" },
563
- -- TODO find better texture here?
+ tiles = {
+ default.modernize.fix_textures and "grass_footsteps.png" or "grass_footsteps_old.png",
564
+ "mud.png", "grass_side.png"
565
+ },
566
groups = { dirt = 2, not_in_creative_inventory = 1 },
567
drop = "default:dirt",
568
sounds = default.node_sound.grass,
mods/cl_default/textures/grass_footsteps.png
-79 Bytes
mods/cl_default/textures/grass_footsteps_old.png
771 Bytes
0 commit comments