diff options
author | Mattes D <github@xoft.cz> | 2014-01-22 15:05:17 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-01-22 15:05:17 +0100 |
commit | 26586fdb92c7924e47debf6946fbdbe06775ae19 (patch) | |
tree | 093a0fa1ad5de0cc2e7dd90f49a3a3ab6429ac5b /src/WorldStorage/WSSAnvil.cpp | |
parent | InfoDump: Can dump a single plugin without LFS. (diff) | |
parent | cWorld now saves/loads the scoreboard (diff) | |
download | cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.tar cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.tar.gz cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.tar.bz2 cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.tar.lz cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.tar.xz cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.tar.zst cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.zip |
Diffstat (limited to '')
-rw-r--r-- | src/WorldStorage/WSSAnvil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WorldStorage/WSSAnvil.cpp b/src/WorldStorage/WSSAnvil.cpp index 8983f25ba..8be6372e2 100644 --- a/src/WorldStorage/WSSAnvil.cpp +++ b/src/WorldStorage/WSSAnvil.cpp @@ -1936,7 +1936,7 @@ bool cWSSAnvil::LoadEntityBaseFromNBT(cEntity & a_Entity, const cParsedNBT & a_N return false; } a_Entity.SetYaw(Rotation[0]); - a_Entity.SetRoll (Rotation[1]); + a_Entity.SetRoll(Rotation[1]); return true; } |