diff options
Diffstat (limited to '')
-rw-r--r-- | src/Entities/ThrownEnderPearlEntity.cpp (renamed from src/Entities/ProjectileEnderPearl.cpp) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Entities/ProjectileEnderPearl.cpp b/src/Entities/ThrownEnderPearlEntity.cpp index db32f47b7..c37161145 100644 --- a/src/Entities/ProjectileEnderPearl.cpp +++ b/src/Entities/ThrownEnderPearlEntity.cpp @@ -1,13 +1,13 @@ #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules -#include "ProjectileEnderPearl.h" +#include "ThrownEnderPearlEntity.h" cThrownEnderPearlEntity::cThrownEnderPearlEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d & a_Speed) : -super(pkEnderPearl, a_Creator, a_X, a_Y, a_Z, 0.25, 0.25) + super(pkEnderPearl, a_Creator, a_X, a_Y, a_Z, 0.25, 0.25) { SetSpeed(a_Speed); } |