aboutsummaryrefslogtreecommitdiff
path: root/src/onload/lobby_grass.lua
blob: 02938b75e5a1a069ee0bdf42acc5bbfe664ba0b6 (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