hcyl/cyl height issues
swift256 opened this issue ยท 2 comments
I found a problem trying to generate a tall cylinder near bedrock. Standing on level 5 and using /cyl air 16 64 only generates a cylinder of air 6 blocks tall.
The problem is in EditSession.java in the makeCylinder and makeHollowCylinder routines:
if (pos.getBlockY() - height - 1 < 0) {
height = pos.getBlockY() + 1;
Thanks!
Thanks. It's a known problem that I plan to fix as soon as I work on
WorldEdit again for the next release.
On Fri, Jul 15, 2011 at 10:41 AM, swift256
[email protected]
wrote:
I found a problem trying to generate a tall cylinder near bedrock. Standing on level 5 and using /cyl air 16 64 only generates a cylinder of air 6 blocks tall.
The problem is in EditSession.java in the makeCylinder and makeHollowCylinder routines:
if (pos.getBlockY() - height - 1 < 0) {
height = pos.getBlockY() + 1;Thanks!
Reply to this email directly or view it on GitHub:
#119
Fixed in 4aa9f7d