summaryrefslogtreecommitdiffstats
path: root/src/BlockArea.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-03-12 07:46:14 +0100
committermadmaxoft <github@xoft.cz>2014-03-12 07:46:14 +0100
commit950614da7e700b8847f0dcc0bac9d76367801a3f (patch)
treea5ca64ff0c42ce32ea96c513bc65c94c6bf7f7f6 /src/BlockArea.cpp
parentMerge branch 'master' into cBlockArea_Offset (diff)
downloadcuberite-950614da7e700b8847f0dcc0bac9d76367801a3f.tar
cuberite-950614da7e700b8847f0dcc0bac9d76367801a3f.tar.gz
cuberite-950614da7e700b8847f0dcc0bac9d76367801a3f.tar.bz2
cuberite-950614da7e700b8847f0dcc0bac9d76367801a3f.tar.lz
cuberite-950614da7e700b8847f0dcc0bac9d76367801a3f.tar.xz
cuberite-950614da7e700b8847f0dcc0bac9d76367801a3f.tar.zst
cuberite-950614da7e700b8847f0dcc0bac9d76367801a3f.zip
Diffstat (limited to 'src/BlockArea.cpp')
-rw-r--r--src/BlockArea.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/BlockArea.cpp b/src/BlockArea.cpp
index 983dbe46b..406e18a3b 100644
--- a/src/BlockArea.cpp
+++ b/src/BlockArea.cpp
@@ -255,7 +255,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)
+void cBlockArea::SetWEOffset(int a_OffsetX, int a_OffsetY, int a_OffsetZ)
{
m_WEOffset.Set(a_OffsetX, a_OffsetY, a_OffsetZ);
}
@@ -264,7 +264,7 @@ void cBlockArea::SetOffset(int a_OffsetX, int a_OffsetY, int a_OffsetZ)
-void cBlockArea::SetOffset(const Vector3i & a_Offset)
+void cBlockArea::SetWEOffset(const Vector3i & a_Offset)
{
m_WEOffset.Set(a_Offset.x, a_Offset.y, a_Offset.z);
}