Переглянути джерело

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