diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-03-08 16:13:45 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-03-08 16:13:45 +0100 |
commit | c3758112cc25b3f491abeb88c3f1d10b8985362a (patch) | |
tree | d22a0004d00a303d7c063f105929b21735a2ef3b /src/WorldStorage/SchematicFileSerializer.h | |
parent | Warnings (diff) | |
parent | Merge pull request #770 from xdot/master (diff) | |
download | cuberite-c3758112cc25b3f491abeb88c3f1d10b8985362a.tar cuberite-c3758112cc25b3f491abeb88c3f1d10b8985362a.tar.gz cuberite-c3758112cc25b3f491abeb88c3f1d10b8985362a.tar.bz2 cuberite-c3758112cc25b3f491abeb88c3f1d10b8985362a.tar.lz cuberite-c3758112cc25b3f491abeb88c3f1d10b8985362a.tar.xz cuberite-c3758112cc25b3f491abeb88c3f1d10b8985362a.tar.zst cuberite-c3758112cc25b3f491abeb88c3f1d10b8985362a.zip |
Diffstat (limited to 'src/WorldStorage/SchematicFileSerializer.h')
-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. |