Fixed coordinates check

This commit is contained in:
Daegaladh 2024-09-16 20:24:38 +02:00
parent ae501999bb
commit b3c827fbcf

View File

@ -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);