Skip to content
Snippets Groups Projects
Commit 64fe69f3 authored by Auke Kok's avatar Auke Kok Committed by paramat
Browse files

Remove "grass under snow" from default:dirt_with_snow in darkness.

This is technically "dirt with grass" that's just under a snow
cover, so in darkness the grass on these nodes will also die,
turning it into dirt.

This doesn't convert dirt_with_snow under snow.
parent a2d4e577
No related branches found
No related tags found
No related merge requests found
......@@ -384,7 +384,11 @@ minetest.register_abm({
--
minetest.register_abm({
nodenames = {"default:dirt_with_grass", "default:dirt_with_dry_grass"},
nodenames = {
"default:dirt_with_grass",
"default:dirt_with_dry_grass",
"default:dirt_with_snow",
},
interval = 8,
chance = 50,
catch_up = false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment