summaryrefslogtreecommitdiffstats
path: root/src/Entities/Entity.cpp
diff options
context:
space:
mode:
authorbibo38 <bibo38@users.noreply.github.com>2017-12-21 12:36:58 +0100
committerAlexander Harkness <me@bearbin.net>2017-12-21 12:36:58 +0100
commit532731e6f4c0d843d355ff8f2d9f63e4e7854e6a (patch)
tree68c7c70e33fde99b21de53e1b3c7b86c6872c8b5 /src/Entities/Entity.cpp
parentAdded Github-related rules to Contributing.md (#4076) (diff)
downloadcuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar
cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.gz
cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.bz2
cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.lz
cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.xz
cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.zst
cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.zip
Diffstat (limited to 'src/Entities/Entity.cpp')
-rw-r--r--src/Entities/Entity.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Entities/Entity.cpp b/src/Entities/Entity.cpp
index 11405d2fd..4245f607d 100644
--- a/src/Entities/Entity.cpp
+++ b/src/Entities/Entity.cpp
@@ -243,6 +243,7 @@ void cEntity::Destroy(bool a_ShouldBroadcast)
this->GetUniqueID(), this->GetClass(),
ParentChunkCoords.m_ChunkX, ParentChunkCoords.m_ChunkZ
);
+ UNUSED(ParentChunkCoords); // Non Debug mode only
// Make sure that RemoveEntity returned a valid smart pointer
// Also, not storing the returned pointer means automatic destruction
@@ -1599,6 +1600,7 @@ bool cEntity::DoMoveToWorld(cWorld * a_World, bool a_ShouldSendRespawn, Vector3d
a_OldWorld.GetName().c_str(), a_World->GetName().c_str(),
OldChunkCoords.m_ChunkX, OldChunkCoords.m_ChunkZ
);
+ UNUSED(OldChunkCoords); // Non Debug mode only
a_World->AddEntity(a_OldWorld.RemoveEntity(*this));
cRoot::Get()->GetPluginManager()->CallHookEntityChangedWorld(*this, a_OldWorld);
});