1
0

Fixed respawning

* Fixes #1103
This commit is contained in:
Tiger Wang
2014-06-29 22:44:01 +01:00
parent 3c631fc0f9
commit b9d4431f6f
12 changed files with 19 additions and 19 deletions

View File

@@ -2397,9 +2397,9 @@ void cClientHandle::SendRemoveEntityEffect(const cEntity & a_Entity, int a_Effec
void cClientHandle::SendRespawn(const cWorld & a_World)
void cClientHandle::SendRespawn(const cWorld & a_World, bool a_ShouldIgnoreDimensionChecks)
{
m_Protocol->SendRespawn(a_World);
m_Protocol->SendRespawn(a_World, a_ShouldIgnoreDimensionChecks);
}