diff options
author | b33duck <b33duck@gmail.com> | 2015-05-28 22:17:21 +0200 |
---|---|---|
committer | b33duck <b33duck@gmail.com> | 2015-05-29 04:43:16 +0200 |
commit | 022348645e5f4a39c57ab6c899dd9de12bcb3794 (patch) | |
tree | 150ae108fa58f6c9f9f842c1bb50906315f6921a /src/ClientHandle.cpp | |
parent | Updated DumpInfo plugin. (diff) | |
download | cuberite-022348645e5f4a39c57ab6c899dd9de12bcb3794.tar cuberite-022348645e5f4a39c57ab6c899dd9de12bcb3794.tar.gz cuberite-022348645e5f4a39c57ab6c899dd9de12bcb3794.tar.bz2 cuberite-022348645e5f4a39c57ab6c899dd9de12bcb3794.tar.lz cuberite-022348645e5f4a39c57ab6c899dd9de12bcb3794.tar.xz cuberite-022348645e5f4a39c57ab6c899dd9de12bcb3794.tar.zst cuberite-022348645e5f4a39c57ab6c899dd9de12bcb3794.zip |
Diffstat (limited to 'src/ClientHandle.cpp')
-rw-r--r-- | src/ClientHandle.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index 9644679d7..9cba5619d 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -381,8 +381,8 @@ void cClientHandle::Authenticate(const AString & a_Name, const AString & a_UUID, // Send player list items SendPlayerListAddPlayer(*m_Player); - World->BroadcastPlayerListAddPlayer(*m_Player); - World->SendPlayerList(m_Player); + cRoot::Get()->BroadcastPlayerListsAddPlayer(*m_Player); + cRoot::Get()->SendPlayerLists(m_Player); m_Player->Initialize(*World); m_State = csAuthenticated; @@ -1475,7 +1475,7 @@ void cClientHandle::HandleChat(const AString & a_Message) Msg.AddTextPart(AString("<") + m_Player->GetName() + "> ", Color); Msg.ParseText(Message); Msg.UnderlineUrls(); - m_Player->GetWorld()->BroadcastChat(Msg); + cRoot::Get()->BroadcastChat(Msg); } |