diff options
author | Mattes D <github@xoft.cz> | 2015-10-26 07:41:07 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-10-26 07:41:07 +0100 |
commit | 1a2cc9e497c924bf9636836c04f74c1c102f9e97 (patch) | |
tree | 9d714f07041c9bc045f3591c3f2da2039945c80b /src/Protocol/Protocol17x.cpp | |
parent | Debuggers: Added a plugin channel test with funny chars in data. (diff) | |
parent | Update Loops required for JsonCPP (diff) | |
download | cuberite-1a2cc9e497c924bf9636836c04f74c1c102f9e97.tar cuberite-1a2cc9e497c924bf9636836c04f74c1c102f9e97.tar.gz cuberite-1a2cc9e497c924bf9636836c04f74c1c102f9e97.tar.bz2 cuberite-1a2cc9e497c924bf9636836c04f74c1c102f9e97.tar.lz cuberite-1a2cc9e497c924bf9636836c04f74c1c102f9e97.tar.xz cuberite-1a2cc9e497c924bf9636836c04f74c1c102f9e97.tar.zst cuberite-1a2cc9e497c924bf9636836c04f74c1c102f9e97.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol17x.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp index d17537ff7..8dd608069 100644 --- a/src/Protocol/Protocol17x.cpp +++ b/src/Protocol/Protocol17x.cpp @@ -3222,11 +3222,11 @@ void cProtocol176::SendPlayerSpawn(const cPlayer & a_Player) const Json::Value & Properties = a_Player.GetClientHandle()->GetProperties(); Pkt.WriteVarInt32(Properties.size()); - for (Json::Value::iterator itr = Properties.begin(), end = Properties.end(); itr != end; ++itr) + for (auto & Node : Properties) { - Pkt.WriteString(itr->get("name", "").asString()); - Pkt.WriteString(itr->get("value", "").asString()); - Pkt.WriteString(itr->get("signature", "").asString()); + Pkt.WriteString(Node.get("name", "").asString()); + Pkt.WriteString(Node.get("value", "").asString()); + Pkt.WriteString(Node.get("signature", "").asString()); } Pkt.WriteFPInt(a_Player.GetPosX()); |