diff options
Diffstat (limited to 'src/Entities/WitherSkullEntity.cpp')
-rw-r--r-- | src/Entities/WitherSkullEntity.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/Entities/WitherSkullEntity.cpp b/src/Entities/WitherSkullEntity.cpp index 22e474395..5b9e35ac3 100644 --- a/src/Entities/WitherSkullEntity.cpp +++ b/src/Entities/WitherSkullEntity.cpp @@ -1,5 +1,5 @@ -// WitherSkullEntity.cpp +// WitherSkullEntity.cpp // Implements the cWitherSkullEntity class representing the entity used by both blue and black wither skulls @@ -12,7 +12,7 @@ -cWitherSkullEntity::cWitherSkullEntity(cEntity * a_Creator, Vector3d a_Pos, Vector3d a_Speed): +cWitherSkullEntity::cWitherSkullEntity(cEntity * a_Creator, Vector3d a_Pos, Vector3d a_Speed) : Super(pkWitherSkull, a_Creator, a_Pos, 0.3125f, 0.3125f) { SetSpeed(a_Speed); @@ -45,7 +45,3 @@ void cWitherSkullEntity::OnHitEntity(cEntity & a_EntityHit, Vector3d a_HitPos) Destroy(); } - - - - |