summaryrefslogtreecommitdiffstats
path: root/source/cMonster.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-03-19 18:15:35 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-03-19 18:15:35 +0100
commit2786ad306abe7487e3fc6bed1123ca8ebc2c3198 (patch)
tree58254cedb48cb33431699cce729dc7c67bd20779 /source/cMonster.cpp
parentFixed a warning in a Release build (diff)
downloadcuberite-2786ad306abe7487e3fc6bed1123ca8ebc2c3198.tar
cuberite-2786ad306abe7487e3fc6bed1123ca8ebc2c3198.tar.gz
cuberite-2786ad306abe7487e3fc6bed1123ca8ebc2c3198.tar.bz2
cuberite-2786ad306abe7487e3fc6bed1123ca8ebc2c3198.tar.lz
cuberite-2786ad306abe7487e3fc6bed1123ca8ebc2c3198.tar.xz
cuberite-2786ad306abe7487e3fc6bed1123ca8ebc2c3198.tar.zst
cuberite-2786ad306abe7487e3fc6bed1123ca8ebc2c3198.zip
Diffstat (limited to '')
-rw-r--r--source/cMonster.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cMonster.cpp b/source/cMonster.cpp
index 15fb16fc3..1820bae4d 100644
--- a/source/cMonster.cpp
+++ b/source/cMonster.cpp
@@ -207,7 +207,7 @@ void cMonster::ReplicateMovement()
{
if(m_bDirtyOrientation && !m_bDirtyPosition)
{
- cPacket_EntityLook EntityLook( this );
+ cPacket_EntityLook EntityLook(*this);
m_World->BroadcastToChunk(m_ChunkX, m_ChunkY, m_ChunkZ, EntityLook );
m_bDirtyOrientation = false;
}