Woops, fix operator less than
This commit is contained in:
parent
537508021e
commit
7cf645e715
|
@ -190,7 +190,7 @@ public:
|
|||
return (pos.x >= x-minXRange && pos.x <= x+maxXRange && pos.y >= y-minYRange && pos.y <= y+maxYRange && pos.z == z);
|
||||
}
|
||||
// operator less than for std::map
|
||||
bool operator<(const Position& other) const { return x < other.x && y < other.y && z < other.z; }
|
||||
bool operator<(const Position& other) const { return x < other.x || y < other.y || z < other.z; }
|
||||
|
||||
bool up(int n = 1) {
|
||||
int nz = z-n;
|
||||
|
|
Loading…
Reference in New Issue