Page 1 of 1

Minetestmapper.py ignore blocks above certain height.

PostPosted: Sun Jul 07, 2013 10:35
by CalumMc
Is there a way to get minetestmapper to not map blocks above a certain height? Flying structures look odd on my map image. Thanks.

PostPosted: Sun Jul 07, 2013 11:01
by Jordach
The C++ version does not have this limitation, IIRC.

PostPosted: Sun Jul 07, 2013 11:18
by xyz
minetestmapper.py, lines 431-432
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
        psmin = getBlockAsInteger((xpos, -2048, zpos))
        psmax = getBlockAsInteger((xpos, 2047, zpos))

PostPosted: Sun Jul 07, 2013 14:45
by CalumMc
xyz wrote:minetestmapper.py, lines 431-432
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
        psmin = getBlockAsInteger((xpos, -2048, zpos))
        psmax = getBlockAsInteger((xpos, 2047, zpos))

Thank you.