diff options
author | madmaxoft <github@xoft.cz> | 2014-03-07 21:28:52 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-03-07 21:28:52 +0100 |
commit | ffdf5f2022cbeb568cb6ff28448aad98876334b1 (patch) | |
tree | e2cf24bab59db43a022400c514da6b579914ff88 /src/WorldStorage/SchematicFileSerializer.h | |
parent | Merge pull request #765 from worktycho/fastmath (diff) | |
download | cuberite-ffdf5f2022cbeb568cb6ff28448aad98876334b1.tar cuberite-ffdf5f2022cbeb568cb6ff28448aad98876334b1.tar.gz cuberite-ffdf5f2022cbeb568cb6ff28448aad98876334b1.tar.bz2 cuberite-ffdf5f2022cbeb568cb6ff28448aad98876334b1.tar.lz cuberite-ffdf5f2022cbeb568cb6ff28448aad98876334b1.tar.xz cuberite-ffdf5f2022cbeb568cb6ff28448aad98876334b1.tar.zst cuberite-ffdf5f2022cbeb568cb6ff28448aad98876334b1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/WorldStorage/SchematicFileSerializer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WorldStorage/SchematicFileSerializer.h b/src/WorldStorage/SchematicFileSerializer.h index f6ce1c16c..05b6c74f4 100644 --- a/src/WorldStorage/SchematicFileSerializer.h +++ b/src/WorldStorage/SchematicFileSerializer.h @@ -36,8 +36,8 @@ public: static bool SaveToSchematicFile(const cBlockArea & a_BlockArea, const AString & a_FileName); /** Saves the area into a string containing the .schematic file data. - Returns the data, or empty string if failed. */ - static AString SaveToSchematicString(const cBlockArea & a_BlockArea); + Returns true if successful, false on failure. The data is stored into a_Out. */ + static bool SaveToSchematicString(const cBlockArea & a_BlockArea, AString & a_Out); private: /** Loads the area from a schematic file uncompressed and parsed into a NBT tree. |