diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2014-03-11 18:23:21 +0100 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2014-03-11 18:23:21 +0100 |
commit | e213e5f9fcb3681a5f383546e17b9800d4a4804a (patch) | |
tree | b4bd964c4966ed1103f859e58b97f637a73cc8cc /src/BlockArea.cpp | |
parent | Using ```const Vector3i &``` (diff) | |
download | cuberite-e213e5f9fcb3681a5f383546e17b9800d4a4804a.tar cuberite-e213e5f9fcb3681a5f383546e17b9800d4a4804a.tar.gz cuberite-e213e5f9fcb3681a5f383546e17b9800d4a4804a.tar.bz2 cuberite-e213e5f9fcb3681a5f383546e17b9800d4a4804a.tar.lz cuberite-e213e5f9fcb3681a5f383546e17b9800d4a4804a.tar.xz cuberite-e213e5f9fcb3681a5f383546e17b9800d4a4804a.tar.zst cuberite-e213e5f9fcb3681a5f383546e17b9800d4a4804a.zip |
Diffstat (limited to 'src/BlockArea.cpp')
-rw-r--r-- | src/BlockArea.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/BlockArea.cpp b/src/BlockArea.cpp index dfdf998df..983dbe46b 100644 --- a/src/BlockArea.cpp +++ b/src/BlockArea.cpp @@ -168,7 +168,7 @@ cBlockArea::cBlockArea(void) : m_SizeX(0), m_SizeY(0), m_SizeZ(0), - m_Offset(0,0,0), + m_WEOffset(0, 0, 0), m_BlockTypes(NULL), m_BlockMetas(NULL), m_BlockLight(NULL), @@ -257,7 +257,7 @@ void cBlockArea::Create(int a_SizeX, int a_SizeY, int a_SizeZ, int a_DataTypes) void cBlockArea::SetOffset(int a_OffsetX, int a_OffsetY, int a_OffsetZ) { - m_Offset.Set(a_OffsetX, a_OffsetY, a_OffsetZ); + m_WEOffset.Set(a_OffsetX, a_OffsetY, a_OffsetZ); } @@ -266,7 +266,7 @@ void cBlockArea::SetOffset(int a_OffsetX, int a_OffsetY, int a_OffsetZ) void cBlockArea::SetOffset(const Vector3i & a_Offset) { - m_Offset.Set(a_Offset.x, a_Offset.y, a_Offset.z); + m_WEOffset.Set(a_Offset.x, a_Offset.y, a_Offset.z); } |