blob: 177508cf374e2f4c43a1aaa84bbf4458c135260f (
plain)
1
2
3
4
5
6
7
|
local old_get_grass_block_type = mcl_core.get_grass_block_type
function mcl_core.get_grass_block_type(pos)
if pos.y > 5000 then
return {name = "mcl_core:dirt_with_grass", param2=0}
end
return old_get_grass_block_type(pos)
end
|