mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 09:39:21 +02:00
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…
x
Reference in New Issue
Block a user