summaryrefslogtreecommitdiffstats
path: root/source/World.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-09-15 22:11:02 +0200
committermadmaxoft <github@xoft.cz>2013-09-15 22:11:02 +0200
commita6b3c560a225fe69ea0ee4170ee122faad934f16 (patch)
treea6efae68262fd2b92a5c101e71b9f0a60f5c2c12 /source/World.cpp
parentFixed previous commit (diff)
downloadcuberite-a6b3c560a225fe69ea0ee4170ee122faad934f16.tar
cuberite-a6b3c560a225fe69ea0ee4170ee122faad934f16.tar.gz
cuberite-a6b3c560a225fe69ea0ee4170ee122faad934f16.tar.bz2
cuberite-a6b3c560a225fe69ea0ee4170ee122faad934f16.tar.lz
cuberite-a6b3c560a225fe69ea0ee4170ee122faad934f16.tar.xz
cuberite-a6b3c560a225fe69ea0ee4170ee122faad934f16.tar.zst
cuberite-a6b3c560a225fe69ea0ee4170ee122faad934f16.zip
Diffstat (limited to 'source/World.cpp')
-rw-r--r--source/World.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/World.cpp b/source/World.cpp
index 882cf90d2..c36c614b1 100644
--- a/source/World.cpp
+++ b/source/World.cpp
@@ -1093,7 +1093,7 @@ void cWorld::GrowTree(int a_X, int a_Y, int a_Z)
-void cWorld::GrowTreeFromSapling(int a_X, int a_Y, int a_Z, char a_SaplingMeta)
+void cWorld::GrowTreeFromSapling(int a_X, int a_Y, int a_Z, NIBBLETYPE a_SaplingMeta)
{
cNoise Noise(m_Generator.GetSeed());
sSetBlockVector Logs, Other;
@@ -1345,7 +1345,7 @@ void cWorld::GrowCactus(int a_BlockX, int a_BlockY, int a_BlockZ, int a_NumBlock
-void cWorld::GrowMelonPumpkin(int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockType)
+void cWorld::GrowMelonPumpkin(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType)
{
MTRand Rand;
m_ChunkMap->GrowMelonPumpkin(a_BlockX, a_BlockY, a_BlockZ, a_BlockType, Rand);