Woops, fix operator less than

master
Ahmed Samy 11 years ago
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…
Cancel
Save