This commit is contained in:
aozhiwei 2023-03-09 14:12:25 +08:00
parent 9ef0931d7b
commit 41a43cd4bc
2 changed files with 2 additions and 2 deletions

View File

@ -2907,7 +2907,7 @@ void Creature::UnSetBuffTag(int tag)
buff_tags_.erase(tag);
}
void Creature::ShotFindPath()
void Creature::ShortFindPath()
{
if (std::abs(GetMoveDir().x) > FLT_EPSILON ||
std::abs(GetMoveDir().z) > FLT_EPSILON

View File

@ -327,7 +327,7 @@ class Creature : public MoveableEntity
int GetBuffTag(int tag);
void IncBuffTag(int tag, int val);
void UnSetBuffTag(int tag);
void ShotFindPath();
void ShortFindPath();
float GetSkillRaycastDistance();
protected: