diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-01-22 19:55:46 +0100 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-01-22 20:16:27 +0100 |
commit | 439b3304f4c82448b0e1585f8641503691212cac (patch) | |
tree | 706035da78a49c971f6d3bf3d812582581ce93a4 /src/ClientHandle.cpp | |
parent | Merge pull request #2894 from LogicParrot/spider (diff) | |
download | cuberite-439b3304f4c82448b0e1585f8641503691212cac.tar cuberite-439b3304f4c82448b0e1585f8641503691212cac.tar.gz cuberite-439b3304f4c82448b0e1585f8641503691212cac.tar.bz2 cuberite-439b3304f4c82448b0e1585f8641503691212cac.tar.lz cuberite-439b3304f4c82448b0e1585f8641503691212cac.tar.xz cuberite-439b3304f4c82448b0e1585f8641503691212cac.tar.zst cuberite-439b3304f4c82448b0e1585f8641503691212cac.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index 6585a38b2..4e882b5d8 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -1642,7 +1642,7 @@ void cClientHandle::HandleUseEntity(UInt32 a_TargetEntityID, bool a_IsLeftClick) m_Me->AddFoodExhaustion(0.3); if (a_Entity->IsPawn()) { - m_Me->NotifyFriendlyWolves(static_cast<cPawn*>(a_Entity)); + m_Me->NotifyNearbyWolves(static_cast<cPawn*>(a_Entity), true); } return true; } |