Ticket #9140: v0_mm_verb2.patch
File v0_mm_verb2.patch, 723 bytes (added by , 15 years ago) |
---|
-
verbs.cpp
703 703 704 704 if (!a->_moving) { 705 705 int dist = getDist(a->getRealPos().x, a->getRealPos().y, a2->getRealPos().x, a2->getRealPos().y); 706 if (dist > 5)706 if (dist > 8) 707 707 a->startWalkActor(a2->getRealPos().x, a2->getRealPos().y, 1); 708 708 else 709 709 return false; … … 730 730 // Detect distance from target object 731 731 int dist = getDist(a->getRealPos().x, a->getRealPos().y, x, y); 732 732 733 // FIXME: This should be changed once the walkbox problem is fixed 734 if (dist > 0x5) { 733 if (dist > 0x8) { 735 734 a->startWalkActor(x, y, dir); 736 735 VAR(6) = x; 737 736 VAR(7) = y;