summaryrefslogtreecommitdiffstats
path: root/src/Entities/ProjectileEntity.cpp
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-06-06 09:16:33 +0200
committerarchshift <admin@archshift.com>2014-06-17 20:17:32 +0200
commitc1692a2e3be114c2807fdaaea0fa4fcd3d4bbc5d (patch)
tree5a945a36d51496cb101c931c28098cb9a9d1be1a /src/Entities/ProjectileEntity.cpp
parentMerge pull request #1101 from Howaner/FenceGate (diff)
downloadcuberite-c1692a2e3be114c2807fdaaea0fa4fcd3d4bbc5d.tar
cuberite-c1692a2e3be114c2807fdaaea0fa4fcd3d4bbc5d.tar.gz
cuberite-c1692a2e3be114c2807fdaaea0fa4fcd3d4bbc5d.tar.bz2
cuberite-c1692a2e3be114c2807fdaaea0fa4fcd3d4bbc5d.tar.lz
cuberite-c1692a2e3be114c2807fdaaea0fa4fcd3d4bbc5d.tar.xz
cuberite-c1692a2e3be114c2807fdaaea0fa4fcd3d4bbc5d.tar.zst
cuberite-c1692a2e3be114c2807fdaaea0fa4fcd3d4bbc5d.zip
Diffstat (limited to 'src/Entities/ProjectileEntity.cpp')
-rw-r--r--src/Entities/ProjectileEntity.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Entities/ProjectileEntity.cpp b/src/Entities/ProjectileEntity.cpp
index 95c494569..ee3890f23 100644
--- a/src/Entities/ProjectileEntity.cpp
+++ b/src/Entities/ProjectileEntity.cpp
@@ -18,9 +18,11 @@
#include "ThrownEnderPearlEntity.h"
#include "ExpBottleEntity.h"
#include "ThrownSnowballEntity.h"
+#include "SplashPotionEntity.h"
#include "FireChargeEntity.h"
#include "FireworkEntity.h"
#include "GhastFireballEntity.h"
+#include "WitherSkullEntity.h"
@@ -250,6 +252,8 @@ cProjectileEntity * cProjectileEntity::Create(eKind a_Kind, cEntity * a_Creator,
case pkGhastFireball: return new cGhastFireballEntity (a_Creator, a_X, a_Y, a_Z, Speed);
case pkFireCharge: return new cFireChargeEntity (a_Creator, a_X, a_Y, a_Z, Speed);
case pkExpBottle: return new cExpBottleEntity (a_Creator, a_X, a_Y, a_Z, Speed);
+ case pkSplashPotion: return new cSplashPotionEntity (a_Creator, a_X, a_Y, a_Z, Speed);
+ case pkWitherSkull: return new cWitherSkullEntity (a_Creator, a_X, a_Y, a_Z, Speed);
case pkFirework:
{
if (a_Item.m_FireworkItem.m_Colours.empty())