diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-13 20:54:26 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-13 20:54:26 +0100 |
commit | 90cec2146a81189a50844dd3ccc3860e2318a3d2 (patch) | |
tree | 1b27ed29bfa6255e9c100b8b4e16ab7b40aae44b /source/BlockArea.h | |
parent | Added HOOK_WEATHER_CHANGING. (diff) | |
download | cuberite-90cec2146a81189a50844dd3ccc3860e2318a3d2.tar cuberite-90cec2146a81189a50844dd3ccc3860e2318a3d2.tar.gz cuberite-90cec2146a81189a50844dd3ccc3860e2318a3d2.tar.bz2 cuberite-90cec2146a81189a50844dd3ccc3860e2318a3d2.tar.lz cuberite-90cec2146a81189a50844dd3ccc3860e2318a3d2.tar.xz cuberite-90cec2146a81189a50844dd3ccc3860e2318a3d2.tar.zst cuberite-90cec2146a81189a50844dd3ccc3860e2318a3d2.zip |
Diffstat (limited to '')
-rw-r--r-- | source/BlockArea.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/BlockArea.h b/source/BlockArea.h index 5cb19b416..653e52a70 100644 --- a/source/BlockArea.h +++ b/source/BlockArea.h @@ -246,6 +246,12 @@ protected: /// Loads the area from a schematic file uncompressed and parsed into a NBT tree. Returns true if successful.
bool LoadFromSchematicNBT(cParsedNBT & a_NBT);
+ /// Sets the specified datatypes at the specified location.
+ void RelSetData(
+ int a_RelX, int a_RelY, int a_RelZ,
+ int a_DataTypes, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta,
+ NIBBLETYPE a_BlockLight, NIBBLETYPE a_BlockSkyLight
+ );
// tolua_begin
} ;
// tolua_end
|