summaryrefslogtreecommitdiffstats
path: root/source/cServer.cpp
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-12-23 15:26:29 +0100
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-12-23 15:26:29 +0100
commitaa392170a2b0fc392c8203a4b31301eb7c94890e (patch)
tree3ab9ec0b2046dd25f7221dbfad563befdb83469c /source/cServer.cpp
parentDigging leaves with shears now drops leaves (diff)
downloadcuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.tar
cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.tar.gz
cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.tar.bz2
cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.tar.lz
cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.tar.xz
cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.tar.zst
cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.zip
Diffstat (limited to '')
-rw-r--r--source/cServer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cServer.cpp b/source/cServer.cpp
index e6d475f46..5fbd6d8c7 100644
--- a/source/cServer.cpp
+++ b/source/cServer.cpp
@@ -340,8 +340,8 @@ void ServerTickThread( void * a_Param )
void cServer::StartListenThread()
{
- m_pState->pListenThread = new cThread( ServerListenThread, this );
- m_pState->pTickThread = new cThread( ServerTickThread, this );
+ m_pState->pListenThread = new cThread( ServerListenThread, this, "cServer::ServerListenThread" );
+ m_pState->pTickThread = new cThread( ServerTickThread, this, "cServer::ServerTickThread" );
m_pState->pListenThread->Start( true );
m_pState->pTickThread->Start( true );
}