summaryrefslogtreecommitdiffstats
path: root/src/World.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2013-12-14 22:00:30 +0100
committerMattes D <github@xoft.cz>2013-12-14 22:00:30 +0100
commit22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e (patch)
tree4299dac2569ac649645a28bbe8aa50f1ba9de246 /src/World.cpp
parentMerge pull request #429 from worktycho/quickfixs (diff)
parentPotentially fixed debug asserts (diff)
downloadcuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.tar
cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.tar.gz
cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.tar.bz2
cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.tar.lz
cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.tar.xz
cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.tar.zst
cuberite-22ee94ffaf2ff1098a77b2e9a2a97040e0d1986e.zip
Diffstat (limited to 'src/World.cpp')
-rw-r--r--src/World.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/World.cpp b/src/World.cpp
index 564905d33..9ec389be9 100644
--- a/src/World.cpp
+++ b/src/World.cpp
@@ -1129,6 +1129,15 @@ bool cWorld::DoWithFurnaceAt(int a_BlockX, int a_BlockY, int a_BlockZ, cFurnaceC
+bool cWorld::DoWithNoteBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cNoteBlockCallback & a_Callback)
+{
+ return m_ChunkMap->DoWithNoteBlockAt(a_BlockX, a_BlockY, a_BlockZ, a_Callback);
+}
+
+
+
+
+
bool cWorld::GetSignLines(int a_BlockX, int a_BlockY, int a_BlockZ, AString & a_Line1, AString & a_Line2, AString & a_Line3, AString & a_Line4)
{
return m_ChunkMap->GetSignLines(a_BlockX, a_BlockY, a_BlockZ, a_Line1, a_Line2, a_Line3, a_Line4);