소스 검색

better LoS level with human least (was way too leanient before)

Image 3 년 전
부모
커밋
5c31dddfba
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      EQ2/source/WorldServer/Spawn.cpp

+ 2 - 2
EQ2/source/WorldServer/Spawn.cpp

@@ -3624,8 +3624,8 @@ void Spawn::FixZ(bool forceUpdate) {
 
 bool Spawn::CheckLoS(Spawn* target)
 {
-	float radiusSrc = 3.5f;
-	float radiusTarg = 3.5f;
+	float radiusSrc = 2.0f;
+	float radiusTarg = 2.0f;
 
 	glm::vec3 targpos(target->GetX(), target->GetZ(), target->GetY()+radiusTarg);
 	glm::vec3 pos(GetX(), GetZ(), GetY()+radiusSrc);