Skip to content

IPolygonalSelection points are not in the correct order #110

@poloskey

Description

@poloskey

IPolygonalSelection points order are changed when your using Set

So change
return new IPolygonalSelection() {
@OverRide
public Set getPoints() {
return ((Polygonal2DRegion) selection).getPoints().stream()
.map(BlockVector2::toBlockVector3)
.map(vector -> BukkitAdapter.adapt(world, vector))
.collect(Collectors.toSet());
}

to

return new IPolygonalSelection() {
@OverRide
public List getPoints() {
return ((Polygonal2DRegion) selection).getPoints().stream()
.map(BlockVector2::toBlockVector3)
.map(vector -> BukkitAdapter.adapt(world, vector))
.collect(Collectors.toList());
}

to guaranteed order of list.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions