1
0

Merge pull request #2151 from SafwatHalaby/wolf

AI - Tweaked wolf speed and teleport threshold
This commit is contained in:
Alexander Harkness 2015-05-28 07:52:30 +01:00
commit 1487f57905

View File

@ -20,6 +20,7 @@ cWolf::cWolf(void) :
m_OwnerName(""),
m_CollarColor(14)
{
m_RelativeWalkSpeed = 2;
}
@ -230,7 +231,7 @@ void cWolf::TickFollowPlayer()
{
// The player is present in the world, follow him:
double Distance = (Callback.OwnerPos - GetPosition()).Length();
if (Distance > 30)
if (Distance > 20)
{
Callback.OwnerPos.y = FindFirstNonAirBlockPosition(Callback.OwnerPos.x, Callback.OwnerPos.z);
TeleportToCoords(Callback.OwnerPos.x, Callback.OwnerPos.y, Callback.OwnerPos.z);