diff options
Diffstat (limited to '')
-rw-r--r-- | source/cClientHandle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cClientHandle.cpp b/source/cClientHandle.cpp index 5802fc1d1..5aa06eb36 100644 --- a/source/cClientHandle.cpp +++ b/source/cClientHandle.cpp @@ -10,7 +10,7 @@ #include "cInventory.h" #include "cChestEntity.h" #include "cSignEntity.h" -#include "UI/cWindow.h" +#include "UI/Window.h" #include "cItem.h" #include "cTorch.h" #include "cDoors.h" @@ -1067,7 +1067,7 @@ void cClientHandle::Tick(float a_Dt) void cClientHandle::SendDisconnect(const AString & a_Reason) { - LOGD("Sending a DC"); + LOGD("Sending a DC: \"%s\"", a_Reason.c_str()); m_Protocol->SendDisconnect(a_Reason); } |