This commit is contained in:
Charles 2001-04-02 19:21:46 +00:00
parent 7b93d41657
commit c0b9dcf1aa
8 changed files with 181 additions and 68 deletions

View file

@ -109,9 +109,9 @@ void CNpcPath::removeAllWaypoints()
this->waypoint = NULL;
}
void CNpcPath::setPathType( NPC_PATH_TYPE newPathType )
void CNpcPath::setPathType( u8 newPathType )
{
pathType = newPathType;
pathType = (NPC_PATH_TYPE) newPathType;
}
bool CNpcPath::incPath()