summaryrefslogtreecommitdiffstats
path: root/src/World.cpp
diff options
context:
space:
mode:
authorSTRWarrior <niels.breuker@hotmail.nl>2013-12-07 14:26:52 +0100
committerSTRWarrior <niels.breuker@hotmail.nl>2013-12-07 14:26:52 +0100
commitc0f091b1a38d90870d369af8cb5ceabdb59fc52d (patch)
tree94c9eef9eaeb1068d5bf725c22561fb688f27a06 /src/World.cpp
parentUpdated TRANSAPI (diff)
downloadcuberite-c0f091b1a38d90870d369af8cb5ceabdb59fc52d.tar
cuberite-c0f091b1a38d90870d369af8cb5ceabdb59fc52d.tar.gz
cuberite-c0f091b1a38d90870d369af8cb5ceabdb59fc52d.tar.bz2
cuberite-c0f091b1a38d90870d369af8cb5ceabdb59fc52d.tar.lz
cuberite-c0f091b1a38d90870d369af8cb5ceabdb59fc52d.tar.xz
cuberite-c0f091b1a38d90870d369af8cb5ceabdb59fc52d.tar.zst
cuberite-c0f091b1a38d90870d369af8cb5ceabdb59fc52d.zip
Diffstat (limited to 'src/World.cpp')
-rw-r--r--src/World.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/World.cpp b/src/World.cpp
index 7982924ae..29fa8f9e4 100644
--- a/src/World.cpp
+++ b/src/World.cpp
@@ -14,6 +14,7 @@
// Entities (except mobs):
#include "Entities/ExpOrb.h"
+#include "Entities/FallingBlock.h"
#include "Entities/Pickup.h"
#include "Entities/Player.h"
#include "Entities/TNTEntity.h"
@@ -1617,6 +1618,17 @@ void cWorld::SpawnItemPickups(const cItems & a_Pickups, double a_BlockX, double
+int cWorld::SpawnFallingBlock(int a_X, int a_Y, int a_Z, BLOCKTYPE BlockType, NIBBLETYPE BlockMeta)
+{
+ cFallingBlock * FallingBlock = new cFallingBlock(Vector3i(a_X, a_Y, a_Z), BlockType, BlockMeta);
+ FallingBlock->Initialize(this);
+ return FallingBlock->GetUniqueID();
+}
+
+
+
+
+
int cWorld::SpawnExperienceOrb(double a_X, double a_Y, double a_Z, int a_Reward)
{
cExpOrb * ExpOrb = new cExpOrb(a_X, a_Y, a_Z, a_Reward);