diff options
author | madmaxoft <github@xoft.cz> | 2014-07-31 22:54:45 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-07-31 22:54:45 +0200 |
commit | 70fd7caf1f879b0588042d6542c27ef8f0909a43 (patch) | |
tree | f220095fc414797f1e9010f67ee312e7a1288ad4 /src/Protocol | |
parent | Fixed UUIDs handling in cPlayer. (diff) | |
download | cuberite-70fd7caf1f879b0588042d6542c27ef8f0909a43.tar cuberite-70fd7caf1f879b0588042d6542c27ef8f0909a43.tar.gz cuberite-70fd7caf1f879b0588042d6542c27ef8f0909a43.tar.bz2 cuberite-70fd7caf1f879b0588042d6542c27ef8f0909a43.tar.lz cuberite-70fd7caf1f879b0588042d6542c27ef8f0909a43.tar.xz cuberite-70fd7caf1f879b0588042d6542c27ef8f0909a43.tar.zst cuberite-70fd7caf1f879b0588042d6542c27ef8f0909a43.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/MojangAPI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Protocol/MojangAPI.cpp b/src/Protocol/MojangAPI.cpp index fa99d63fd..45baa5a4f 100644 --- a/src/Protocol/MojangAPI.cpp +++ b/src/Protocol/MojangAPI.cpp @@ -245,7 +245,7 @@ AString cMojangAPI::MakeUUIDShort(const AString & a_UUID) return a_UUID; } - case 36: + case 36: { // Remove the dashes from the string: AString res; @@ -277,7 +277,7 @@ AString cMojangAPI::MakeUUIDDashed(const AString & a_UUID) return a_UUID; } - case 32: + case 32: { // Insert dashes at the proper positions: AString res; |