summaryrefslogtreecommitdiffstats
path: root/source/World.cpp
diff options
context:
space:
mode:
authorSTRWarrior <niels.breuker@hotmail.nl>2013-11-25 21:03:26 +0100
committerSTRWarrior <niels.breuker@hotmail.nl>2013-11-25 21:03:26 +0100
commitdd76700d8d0491f385efee1a539462501cb41ad4 (patch)
treee8bacd6ae966bf47d51382a9ca06fce4f1ba2453 /source/World.cpp
parentImplented ExpOrb class. (diff)
downloadcuberite-dd76700d8d0491f385efee1a539462501cb41ad4.tar
cuberite-dd76700d8d0491f385efee1a539462501cb41ad4.tar.gz
cuberite-dd76700d8d0491f385efee1a539462501cb41ad4.tar.bz2
cuberite-dd76700d8d0491f385efee1a539462501cb41ad4.tar.lz
cuberite-dd76700d8d0491f385efee1a539462501cb41ad4.tar.xz
cuberite-dd76700d8d0491f385efee1a539462501cb41ad4.tar.zst
cuberite-dd76700d8d0491f385efee1a539462501cb41ad4.zip
Diffstat (limited to 'source/World.cpp')
-rw-r--r--source/World.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/World.cpp b/source/World.cpp
index 531952e37..432ab32e9 100644
--- a/source/World.cpp
+++ b/source/World.cpp
@@ -13,6 +13,7 @@
#include "OSSupport/Timer.h"
// Entities (except mobs):
+#include "Entities/ExpOrb.h"
#include "Entities/Pickup.h"
#include "Entities/Player.h"
#include "Entities/TNTEntity.h"
@@ -1561,6 +1562,16 @@ void cWorld::SpawnItemPickups(const cItems & a_Pickups, double a_BlockX, double
+void 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);
+ ExpOrb->Initialize(this);
+}
+
+
+
+
+
void cWorld::SpawnPrimedTNT(double a_X, double a_Y, double a_Z, double a_FuseTimeInSec, double a_InitialVelocityCoeff)
{
cTNTEntity * TNT = new cTNTEntity(a_X, a_Y, a_Z, a_FuseTimeInSec);