Fixed coordinates check
This commit is contained in:
parent
ae501999bb
commit
b3c827fbcf
@ -15457,7 +15457,7 @@ void clif_parse_HomMoveTo(int fd, map_session_data *sd){
|
||||
else
|
||||
return;
|
||||
|
||||
if (x < 0 || y < 0 || x == bl->x || y == bl->y)
|
||||
if (x < 0 || y < 0 || (x == bl->x && y == bl->y))
|
||||
return;
|
||||
|
||||
unit_walktoxy(bl, x, y, 4);
|
||||
|
Loading…
x
Reference in New Issue
Block a user