diff options
author | mborland <matt.borland1@gmail.com> | 2013-11-11 00:33:58 +0100 |
---|---|---|
committer | mborland <matt.borland1@gmail.com> | 2013-11-11 00:33:58 +0100 |
commit | 3710d423acba9546adf441782eb6a17a081c9320 (patch) | |
tree | 9ad19a165d324101fd3c8a3c42665d397d77ee08 /Tools/ProtoProxy/Connection.cpp | |
parent | VC2013 (diff) | |
parent | Fixed cRoot::FindAndDoWithPlayer(). (diff) | |
download | cuberite-3710d423acba9546adf441782eb6a17a081c9320.tar cuberite-3710d423acba9546adf441782eb6a17a081c9320.tar.gz cuberite-3710d423acba9546adf441782eb6a17a081c9320.tar.bz2 cuberite-3710d423acba9546adf441782eb6a17a081c9320.tar.lz cuberite-3710d423acba9546adf441782eb6a17a081c9320.tar.xz cuberite-3710d423acba9546adf441782eb6a17a081c9320.tar.zst cuberite-3710d423acba9546adf441782eb6a17a081c9320.zip |
Diffstat (limited to 'Tools/ProtoProxy/Connection.cpp')
-rw-r--r-- | Tools/ProtoProxy/Connection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/ProtoProxy/Connection.cpp b/Tools/ProtoProxy/Connection.cpp index 9821c9056..385caa2ce 100644 --- a/Tools/ProtoProxy/Connection.cpp +++ b/Tools/ProtoProxy/Connection.cpp @@ -2205,8 +2205,8 @@ bool cConnection::HandleServerSpawnNamedEntity(void) CreateHexDump(HexDump, Metadata.data(), Metadata.size(), 32); Log("Received a PACKET_SPAWN_NAMED_ENTITY from the server:"); Log(" EntityID = %u (0x%x)", EntityID, EntityID); - Log(" UUID = %s", EntityUUID.c_str()); - Log(" Name = %s", EntityName.c_str()); + Log(" UUID = \"%s\"", EntityUUID.c_str()); + Log(" Name = \"%s\"", EntityName.c_str()); Log(" Pos = %s", PrintableAbsIntTriplet(PosX, PosY, PosZ).c_str()); Log(" Rotation = <yaw %d, pitch %d>", Yaw, Pitch); Log(" CurrentItem = %d", CurrentItem); |