Thrown ender pearls now teleport and hurt.
This commit is contained in:
parent
7f4c880147
commit
42ea85786a
@ -659,6 +659,7 @@ enum eDamageType
|
|||||||
dtFireContact, // Standing inside a fire block
|
dtFireContact, // Standing inside a fire block
|
||||||
dtInVoid, // Falling into the Void (Y < 0)
|
dtInVoid, // Falling into the Void (Y < 0)
|
||||||
dtPotionOfHarming,
|
dtPotionOfHarming,
|
||||||
|
dtEnderPearl, // Thrown an ender pearl, teleported by it
|
||||||
dtAdmin, // Damage applied by an admin command
|
dtAdmin, // Damage applied by an admin command
|
||||||
|
|
||||||
// Some common synonyms:
|
// Some common synonyms:
|
||||||
|
@ -316,7 +316,13 @@ cThrownEnderPearlEntity::cThrownEnderPearlEntity(cEntity * a_Creator, double a_X
|
|||||||
|
|
||||||
void cThrownEnderPearlEntity::OnHitSolidBlock(int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace)
|
void cThrownEnderPearlEntity::OnHitSolidBlock(int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace)
|
||||||
{
|
{
|
||||||
// TODO: Teleport the creator here, make them take 5 damage
|
// Teleport the creator here, make them take 5 damage:
|
||||||
|
if (m_Creator != NULL)
|
||||||
|
{
|
||||||
|
// TODO: The coords might need some tweaking based on the block face
|
||||||
|
m_Creator->TeleportToCoords(a_BlockX + 0.5, a_BlockY + 1.7, a_BlockZ + 0.5);
|
||||||
|
m_Creator->TakeDamage(dtEnderPearl, this, 5, 0);
|
||||||
|
}
|
||||||
|
|
||||||
Destroy();
|
Destroy();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user