diff options
author | Mattes D <github@xoft.cz> | 2014-10-01 07:47:17 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-10-01 07:47:17 +0200 |
commit | 3ccda572b3535a5ac783290c4b6f082b2d1b36a1 (patch) | |
tree | 6470a1932417dbba2fe4145ae631fdd323ad7fad /src/BlockEntities/NoteEntity.cpp | |
parent | Merge pull request #1487 from mc-server/BlockFixes (diff) | |
parent | Removed WSSCompact (diff) | |
download | cuberite-3ccda572b3535a5ac783290c4b6f082b2d1b36a1.tar cuberite-3ccda572b3535a5ac783290c4b6f082b2d1b36a1.tar.gz cuberite-3ccda572b3535a5ac783290c4b6f082b2d1b36a1.tar.bz2 cuberite-3ccda572b3535a5ac783290c4b6f082b2d1b36a1.tar.lz cuberite-3ccda572b3535a5ac783290c4b6f082b2d1b36a1.tar.xz cuberite-3ccda572b3535a5ac783290c4b6f082b2d1b36a1.tar.zst cuberite-3ccda572b3535a5ac783290c4b6f082b2d1b36a1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/BlockEntities/NoteEntity.cpp | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/BlockEntities/NoteEntity.cpp b/src/BlockEntities/NoteEntity.cpp index ecbedbcb1..a9af13c55 100644 --- a/src/BlockEntities/NoteEntity.cpp +++ b/src/BlockEntities/NoteEntity.cpp @@ -124,32 +124,3 @@ void cNoteEntity::IncrementPitch(void) - -bool cNoteEntity::LoadFromJson(const Json::Value & a_Value) -{ - - m_PosX = a_Value.get("x", 0).asInt(); - m_PosY = a_Value.get("y", 0).asInt(); - m_PosZ = a_Value.get("z", 0).asInt(); - - m_Pitch = (char)a_Value.get("p", 0).asInt(); - - return true; -} - - - - - -void cNoteEntity::SaveToJson(Json::Value & a_Value) -{ - a_Value["x"] = m_PosX; - a_Value["y"] = m_PosY; - a_Value["z"] = m_PosZ; - - a_Value["p"] = m_Pitch; -} - - - - |