diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-03-19 18:15:35 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-03-19 18:15:35 +0100 |
commit | 2786ad306abe7487e3fc6bed1123ca8ebc2c3198 (patch) | |
tree | 58254cedb48cb33431699cce729dc7c67bd20779 /source/cMonster.cpp | |
parent | Fixed a warning in a Release build (diff) | |
download | cuberite-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 'source/cMonster.cpp')
-rw-r--r-- | source/cMonster.cpp | 2 |
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;
}
|